首頁  >  文章  >  後端開發  >  TP5.1在view中使用函數的方法(程式碼)

TP5.1在view中使用函數的方法(程式碼)

不言
不言原創
2018-08-20 16:48:567127瀏覽


 這篇文章帶給大家的內容是關於TP5.1在view中使用函數的方法(程式碼),有一定的參考價值,有需要的朋友可以參考一下,希望對你有幫助。

<?php
namespace app\test\controller;
use think\Controller;
class Index extends Controller
{
    public function index()
    {
        $this->assign(&#39;email&#39;,&#39;1047588430@qq.com&#39;);
        $this->assign(&#39;time&#39;,time());
        $this->assign(&#39;user&#39;,&#39;cjk&#39;);
        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中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn