发布网友 发布时间:2022-04-06 04:17
共3个回答
热心网友 时间:2022-04-06 05:46
config.php配置smarty
<?php
header('Content-Type:text/html;charset=utf-8');
/* 定义服务器的绝对路径 */
define('BASE_PATH',$_SERVER['DOCUMENT_ROOT']);
/* 定义Smarty目录的绝对路径(修改成自己的) */
define('SMARTY_PATH','/www/Smarty/');
/* 加载Smarty类库文件 */
require BASE_PATH.SMARTY_PATH.'Smarty.class.php';
/* 实例化一个Smarty对象 */
$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->caching = false;
$smarty->debugging = false;
?>
test.php文件
<?php
require_once("config.php"); //导入你的smarty配置
$con='';
for($i=0;$i<5;$i++){
$con.= "<td>$i</td>";
}
$smarty->assign('content',$con);
$smarty->display("test.html");
?>
模板test.html文件,放到配置好的对应模板文件夹下
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>测试</title>
</head>
<body>
<table border="1">
<tr>
{$content|default:'没有得到赋值'}
</tr>
</table>
</body>
</html>
热心网友 时间:2022-04-06 07:04
下载一个smarty文档,配置一下,然后把php代码复制到php中,html代码留下,然后套上模板就是了,不会的话给我你的邮箱,我把配置好的东东发给你...你只需要修改一下你的文件就是了...
热心网友 时间:2022-04-06 08:39
利用smarty里面的section语句可以直接在做模板的时候循环
<table>
<tr>
{section name=customer loop=$data}
<td></td>
{/section}
</tr>
</table>
这里$data是一个数组,并且需要在服务器端注册
<?php
$arr=array("name","name2","name3");
$smarty->assign("data",$arr);
?>