TP5控制器中的时间戳在视图文件中转化为年月日时分秒

<?php
namespace app\index\controller;
use think\Controller;
use think\Request;
class Index extends Controller
{
    public function index()
    {
    	$time=time();
		$this->assign('time',$time);
		return $this->fetch('index');
    }
}
</!DOCTYPE html>
<html>
<head>
	<title></title>
	<meta charset="utf-8">
</head>
<body>
<form method="post" action="{url:index/index}">
{$time|date="Y-m-d H:i:s",###}
</form>
</body>
</html>

猜你喜欢

转载自blog.csdn.net/qq_42249896/article/details/83345704