为了账号安全,请及时绑定邮箱和手机立即绑定

做到time()的时候出问题了

报错

Notice: Undefined index: time in D:\tools\xampp\htdocs\MVC\smarty\sysplugins\smarty_internal_templatebase.php(171) : eval()'d code on line 27

Notice: Trying to get property of non-object in D:\tools\xampp\htdocs\MVC\smarty\sysplugins\smarty_internal_templatebase.php(171) : eval()'d code on line 27


这是代码test.php

<?php

require('../smarty/Smarty.class.php');

$smarty = new Smarty();

//配置

$smarty->left_delimiter="{";

$smarty->right_delimiter="}";

$smarty->template_dir="tpl";

$smarty->compile_dir="template_c";

$smarty->cache_dir="cache";


$smarty->caching=true;

$smarty->cache_lifetime=120;



$smarty->assign('time',time());

$smarty->display('test.tpl');

--------------------------------------

这是 test.tpl

{$time}

--------------------------------------

刚接触,自己解决不了了

正在回答

2 回答

time() 先赋值给变量,然后再 assign

0 回复 有任何疑惑可以回复我~
#1

Inoodlest 提问者

学习了! :)
2015-05-02 回复 有任何疑惑可以回复我~
#2

小王子抓猫咪 回复 Inoodlest 提问者

新版本的smarty可以不用预先定义变量,你这样写是可以运行的。同时date_format默认就会将时间转换为当前你所在的时区时间格式Jun 15, 2016 当然如果你定义了格式%A,%B %e,%Y %H:%M:%S 会显示Wednesday,June 15,2016 23:53:06 我用的是3.1.29
2016-06-15 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

做到time()的时候出问题了

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信