本篇文章给大家带来的内容是关于TP5.1在view中使用函数 的方法(代码),有一定的参考价值,有需要的朋友可以参考一下,希望对你有所帮助。

<?php
namespace app\test\controller;
use think\Controller;
class Index extends Controller
{
    public function index()
    {
        $this->assign('email','[email protected]');
        $this->assign('time',time());
        $this->assign('user','cjk');
        return $this->fetch();
    }
}
登录后复制

在view中使用{$变量名|函数}

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>Document</title>
</head>
<body>
	<h2>{$email} : {$email|md5}</h2>
	<h2>{$email} : {$email|md5|strtoupper}</h2>
	<h2>{$email} : {$email|substr=0,10}</h2>
</body>
</html>
登录后复制

相关推荐:

tp5框架ajax异步添加数据的代码实现

php实现生成混合验证码与图像验证码并测试(代码)

以上就是TP5.1在view中使用函数的方法(代码)的详细内容,更多请关注Work网其它相关文章!

09-09 13:19