报错 smarty 版本 3.1.30

报错.版本是 3.1.30的

http://img.mukewang.com/57cf68730001678914990048.jpg

<?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的缓存机制. 所以此项为了解.

//$smarty->caching = true ;    //开启缓存

//$smarty->cache_liftime = 120 ;    //缓存时间


$smarty->assign('test','文章标题');

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


慕粉3477002
浏览 1195回答 1
1回答

I_尼克哇

报错是ttt.tpl ,你这里 display是 test.tpl 。跟这个有关?还要看设置的模板目录里是否有这个文件,你设置的template_dir 不应该是决对路径吗?
打开App,查看更多内容
随时随地看视频慕课网APP