PHP smarty求助:一个初级的smarty程序

程序如下:
<?php
define('BASE_PATH',$_SERVER['DOCUMENT_ROOT']);
define('SMARTY_PATH','zzz/Smarty/');
require BASE_PATH.SMARTY_PATH.'Smarty.class.php';
$smarty = new Smarty();
$smarty->template_dir = BASE_PATH.SMARTY_PATH.'templates/';
$smarty->compile_dir = BASE_PATH.SMARTY_PATH.'templates_c/';
$smarty->config_dir = BASE_PATH.SMARTY_PATH.'configs/';
$smarty->cache_dir = BASE_PATH.SMARTY_PATH.'cache/';
$smarty->left_delimiter = '{%';
$smarty->right_delimiter = '%}';
$smarty->caching = false;
$smarty->debugging = false;
$smarty->assign('title','第一个Smarty程序');
$smarty->assign('content','Hello,Welcome to study \'Smarty\'!');
$smarty->display('hello.html');
?>

<head>
<title> {% $title %} </title>
</head>
<body>
{% $content %}
</body>
1)不能显示内容,显示的却是:{% $content %},根本没有解析出来内容
2)如果把hello.html改成hello.tpl,即把后缀换了,就不正确了。一打开hello.tpl就会弹出一个对话框:你想保存或打开此文件吗?
不知道什么原因?忘大家能够帮助!!!

作者: lazymale   发布时间: 2011-09-07

按照你的代码稍作修改可以正常显示——define('SMARTY_PATH','/zzz/Smarty/');
说一下原因吧:
你定义的这个常量 BASE_PATH,只是你服务器的根目录,其格式:X:/XXX ;右边少了 “/”!!

作者: laomp11   发布时间: 2011-09-07