欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

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

程序员文章站 2022-03-21 15:48:54
...
本篇文章给大家带来的内容是关于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中使用函数的方法(代码)的详细内容,更多请关注其它相关文章!

相关标签: TP5.1