手揣网教程/网站教程/内容

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

网站教程2024-11-16 阅读
[摘要]本篇文章给大家带来的内容是关于TP5.1在view中使用函数 的方法(代码),有一定的参考价值,有需要的朋友可以参考一下,希望对你有所帮助。<?php namespace app\test\c...
本篇文章给大家带来的内容是关于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中使用函数的方法(代码)的详细内容,更多请关注php中文网其它相关文章!

  • 微信
  • 分享

  • 网站建设是一个广义的术语,涵盖了许多不同的技能和学科中所使用的生产和维护的网站。

    ……

    标签:TP5.1在view中运用函数的办法(代码)
    相关阅读