当前位置:Gxlcms > PHP教程 > TP5.1在view中使用函数的方法(代码)

TP5.1在view中使用函数的方法(代码)

时间:2021-07-01 10:21:17 帮助过:216人阅读

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

<?php
namespace app\test\controller;
use think\Controller;
class Index extends Controller
{
    public function index()
    {
        $this->assign('email','1047588430@qq.com');
        $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中使用函数的方法(代码)的详细内容,更多请关注Gxl网其它相关文章!

人气教程排行