# 安装smarty
通过composer安装
~~~bash
composer require smarty/smarty
~~~
# 创建一个服务
~~~go
php think make:service SmartyService
~~~
SmartyService.php
~~~php
<?php
declare (strict_types=1);
namespace app\service;
class SmartyService extends \think\Service
{
protected $smarty;
/**
* 注册服务
*
* @return mixed
*/
public function register()
{
//初始化Smarty
$this->smarty = new \Smarty();
// 绑定类实例
$this->app->bind('smarty', $this->smarty);
}
/**
* 执行服务 ,配置Smarty
*
* @return mixed
*/
public function boot()
{
$this->smarty->caching = config('smarty.caching');
$this->smarty->cache_lifetime = config('smarty.cache_lifetime');
$this->smarty->setTemplateDir(config('smarty.template_dir'));
$this->smarty->setCompileDir(config('smarty.compile_dir'));
$this->smarty->cache_dir = config('smarty.cache_dir');
$this->smarty->config_dir = config('smarty.config_dir');
$this->smarty->setLeftDelimiter(config('smarty.left_delimiter'));
$this->smarty->setRightDelimiter(config('smarty.right_delimiter'));
$this->smarty->auto_literal = config('smarty.auto_literal');
}
}
~~~
# 创建config配置文件
在config目录下新建`smarty.php`
~~~php
<?php
// +----------------------------------------------------------------------
// | 模板设置
// +----------------------------------------------------------------------
return [
//是否缓存
'caching' => false,
//缓存周期(开启缓存生效)
'cache_lifetime' => 120,
// 设置模板基础路径
'template_dir' => root_path('view'),
// 模板编译路径
'compile_dir' => runtime_path('smarty/compile'),
// 缓存目录
'cache_dir' => runtime_path('smarty/cache'),
// 配置目录(比较鸡肋,建议:使用框架的config就好了)
'config_dir' => config_path('smarty'),
// 模板引擎左边标记
'left_delimiter' => '<{',
// 模板引擎右边标记
'right_delimiter' => '}>',
//空格策略
'auto_literal' => false,
];
~~~
# 使用
在控制器中如下
~~~lisp
app('smarty')->display('index/index/index.tpl', compact('articles'));
~~~
## 注意
* thinkphp6.0的特性不能在控制器中使用 exit ,die 等终止脚本的函数
* 如果自定义处理报错中需要使用exit()将结果输出,否则会重复渲染页面。
# 公共数据赋值
可以创建一个`BaseController`控制器在构造函数中赋值
~~~objectivec
//一些公共的数据
app('smarty')->assign('index_info', session('index_info'));
~~~
这样就能在模板任意地方使用`<{$index_info->nickname}>`
- thinkphp6执行流程(一)
- php中use关键字用法详解
- Thinkphp6使用腾讯云发送短信步骤
- 路由配置
- Thinkphp6,static静态资源访问路径问题
- ThinkPHP6.0+ 使用Redis 原始用法
- smarty在thinkphp6.0中的最佳实践
- Thinkphp6.0 搜索器使用方法
- 从已有安装包(vendor)恢复 composer.json
- tp6with的用法,表间关联查询
- thinkphp6.x多对多如何添加中间表限制条件
- thinkphp6 安装JWT
- 缓存类型
- 请求信息和HTTP头信息
- 模型事件用法
- 助手函数汇总
- tp6集成Alipay 手机和电脑端支付的方法
- thinkphp6使用jwt
- 6.0session cookie cache
- tp6笔记
- TP6(thinkphp6)队列与延时队列
- thinkphp6 command(自定义指令)
- command(自定义指令)
- 本地文件上传
- 缓存
- 响应
- 公共函数配置
- 七牛云+文件上传
- thinkphp6:访问多个redis数据源(thinkphp6.0.5 / php 7.4.9)
- 富文本编辑器wangEditor3
- IP黑名单
- 增删改查 +文件上传
- workerman 定时器操作控制器的方法
- 上传文件到阿里云oss
- 短信或者邮箱验证码防刷代码
- thinkphp6:访问redis6(thinkphp 6.0.9/php 8.0.14)
- 实现关联多个id以逗号分开查询数据
- thinkphp6实现邮箱注册功能的细节和代码(点击链接激活方式)
- 用mpdf生成pdf文件(php 8.1.1 / thinkphp v6.0.10LTS )
- 生成带logo的二维码(php 8.1.1 / thinkphp v6.0.10LTS )
- mysql数据库使用事务(php 8.1.1 / thinkphp v6.0.10LTS)
- 一,创建过滤IP的中间件
- 源码解析请求流程
- 验证码生成
- 权限管理
- 自定义异常类
- 事件监听event-listene
- 安装与使用think-addons
- 事件与多应用
- Workerman 基本使用
- 查询用户列表按拼音字母排序
- 扩展包合集
- 查询用户数据,但是可以通过输入用户昵称来搜索用户同时还要统计用户的文章和粉丝数
- 根据图片的minetype类型获取文件真实拓展名思路
- 到处excel
- 用imagemagick库生成缩略图
- 生成zip压缩包并下载
- API 多版本控制
- 用redis+lua做限流(php 8.1.1 / thinkphp v6.0.10LTS )
- 【thinkphp6源码分析三】 APP类之父, 容器Container类
- thinkphp6表单重复提交解决办法
- 小程序授权
- 最简单的thinkphp6导出Excel
- 根据访问设备不同访问不同模块
- 服务系统
- 前置/后置中间件
- 给接口api做签名验证(php 8.1.1 / thinkphp v6.0.10LTS )
- 6实现邮箱注册功能的细节和代码(点击链接激活方式)
- 使用前后端分离的验证码(thinkphp 6.0.9/php 8.0.14/vue 3.2.26)
- 前后端分离:用jwt+middleware做用户登录验证(php 8.1.1 / thinkphp v6.0.10LTS )
- vue前后端分离多图上传
- thinkphp 分组、页面跳转与ajax
- thinkphp6 常用方法文档
- 手册里没有的一些用法
- Swagger 3 API 注释
- PHP 秒级定时任务
- thinkphp6集成gatewayWorker(workerman)实现实时监听
- thinkphp6按月新增数据表
- 使用redis 实现消息队列
- api接口 统一结果返回处理类
- 使用swoole+thinkphp6.0+redis 结合开发的登录模块
- 给接口api做签名验证
- ThinkPHP6.0 + UniApp 实现小程序的 微信登录
- ThinkPHP6.0 + Vue + ElementUI + axios 的环境安装到实现 CURD 操作!
- 异常$e
- 参数请求验证自定义和异常错误自定义