thinkphp6 入门(11)-- 模板标签

新版框架默认只能支持PHP原生模板,如果需要使用thinkTemplate模板引擎,需要安装think-view扩展(该扩展会自动安装think-template依赖库)。

composer require topthink/think-view

配置文件

安装完成后,在配置目录的view.php文件中进行模板引擎相关参数的配置,例如:

thinkphp6 入门(11)-- 模板标签_第1张图片

php文件中赋值

View::assign('user', $user);

thinkphp6 入门(11)-- 模板标签_第2张图片

html文件中使用模板标签

{if $user.profile_photo_path == null}
       profile
{else /} 
      profile
{/if}


{$user.name}

thinkphp6 入门(11)-- 模板标签_第3张图片

完整的模板标签(循环、比较、条件)可以参考

循环标签 · ThinkTemplate开发指南 · 看云ThinkTemplate模板引擎开发指南icon-default.png?t=N7T8https://www.kancloud.cn/manual/think-template/1286417

软件工程小施同学

你可能感兴趣的:(PHP,thinkphp)