您好,匿名用户
随意问技术百科期待您的加入

Smarty调用问题。

0 投票

运行网页空白一片,不知道是不是哪里没有引用正确

所有的文件夹在同一个目录下面

我自己的项目包含目前如下几个文件夹

/Smarty

/smarty_cache 这个文件是我单独创建的

/templates 这个文件是我单独创建的

/templates_c 这个文件是我单独创建的

三个文件 /index.php /smarty.inc.php /templates/index.cpl

其中index.php中的内容如下:

1	<?php
2	 
3	include('smarty.inc.php');
4	$smarty->assign('kaishi','这个不知到怎么样,测试看看!');
5	$smarty->display('index.cpl');
6	 
7	?>

smarty.inc.php中的代码如下:

01	<?php
02	include_once("./Smarty/Smarty.class.php");//包含smarty类文件
03	$smarty=new Smarty();//建立Smarty实例对象$smarty
04	$smarty->config_dir="./Smarty/Config_File.class.php";//目录变量设置类
05	$smarty->caching=false;//不使用缓存
06	$smarty->template_dir="./templates";//设置模板目录
07	$smarty->complie_dir="./templates_c";//设置模板编译目录
08	$smarty->cache_dir="./smarty_cache";//缓存文件夹
09	$smarty->left_delimiter="{";
10	$smarty->right_delimiter="}";
11	?>

/templates/index.cpl 中代码如下:

01	<html>
02	<head>
03	<title>
04	{$kaishi}
05	</title>
06	</head>
07	<body>
08	<div>
09	<strong>hello,{$kaishi}</strong>
10	</div>
11	</body>
12	</html>

运行网页之后是一片空白

用户头像 提问 2013年 11月7日 @ 末日姐 上等兵 (172 威望)
分享到:

1个回答

0 投票

你所写的代码并没有问题,出问题的地方你可能忽略了。
1,如果你是在linux下做的测试,可能是你的php报错未开。
2,是在window下作的测试。根据你描述的,只能确定的就是模板没有被解析,(不然至少会出现‘hello,’)。

用户头像 回复 2013年 11月8日 @ Draven 上等兵 (325 威望)
提一个问题:

相关问题

0 投票
1 回复 35 阅读
用户头像 提问 2012年 12月1日 @ Brand 上等兵 (185 威望)
0 投票
1 回复 22 阅读
用户头像 提问 2014年 3月4日 @ Soraka 上等兵 (319 威望)
0 投票
1 回复 41 阅读
用户头像 提问 2013年 10月3日 @ Olaf 上等兵 (366 威望)
0 投票
1 回复 62 阅读
用户头像 提问 2013年 9月18日 @ Darius 上等兵 (331 威望)
0 投票
1 回复 1,638 阅读

欢迎来到随意问技术百科, 这是一个面向专业开发者的IT问答网站,提供途径助开发者查找IT技术方案,解决程序bug和网站运维难题等。
温馨提示:本网站禁止用户发布与IT技术无关的、粗浅的、毫无意义的或者违法国家法规的等不合理内容,谢谢支持。

欢迎访问随意问技术百科,为了给您提供更好的服务,请及时反馈您的意见。
...