求協助使用smarty模版時Warning: Smarty error: unable to read resource:
本帖最後由 tiancai784071179 於 2015-05-21 15:08:47 編輯
模板目錄:我用$tpl->template_dir查了,模板目錄也沒錯呀,為啥顯示不出來了呢,哭求協助
錯誤資訊:Warning: Smarty error: unable to read resource: "admin" in D:\AppServ\www\moban\libs\Smarty.class.php on line 1095
以下是初始化的程式
define(ROOT, "C:/AppServ/www/xsphp/");
include ROOT."libs/Smarty.class.php";
$tpl=new Smarty;
$tpl->template_dir=ROOT."tpl/";
$tpl->compile_dir=ROOT."com";
$tpl->left_delimiter="<{";
$tpl->right_delimiter="}>";
主程式:require "init.inc.php";
$title="this is a title";
$content="this is body content";
$tpl->assign("title", $title);
$tpl->assign("content", $content);
$tpl->display("default/test.tpl");
------解決思路----------------------
沒看到你display admin的代碼呢?代碼貼全了沒?
------解決思路----------------------
$tpl->display("default/test.tpl");
default/test.tpl檔案呢,建立沒有。
------解決思路----------------------
你指定你的tpl模板檔案在/moban/tpl下了嗎?
------解決思路----------------------
$tpl->display("admin"); 這個錯的
------解決思路----------------------
然後
$tpl->display("admin.tpl");