smarty的应用
Posted 叶夏
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了smarty的应用相关的知识,希望对你有一定的参考价值。
smarty的应用,首先创建一个php文件
<?php
error_reporting(E_ALL & ~E_DEPRECATED);//避免过期出现的问题
include_once(‘mypdo.php‘);//读取你自己封装的连接数据库的文件
header(‘content-type:text/html;charset=utf-8‘);
$mypdo = new MyPdo();
$sql = "select * from book where id = ?";//SQL语句
$booklist = $mypdo->pdoPrepare($sql,array($_GET[‘id‘]));
$mypdo = null;//关闭数据库
include_once("libs/Smarty.class.php"); //包含smarty类文件
$smarty = new Smarty(); //建立smarty实例对象$smarty
$smarty->caching=false; //是否使用缓存,项目在调试期间,不建议启用缓存
$smarty->template_dir = "./templates"; //设置模板目录
$smarty->compile_dir = "./templates_c"; //设置编译目录
//$smarty->cache_dir = "./smarty_cache"; //缓存文件夹
//左右边界符,默认为{},但实际应用当中容易与javascript相冲突
//因此建议替换为<{}>
$smarty->left_delimiter = "<{";
$smarty->right_delimiter = "}>";
$smarty->assign("booklist",$booklist);//传递的变量名和值;
$smarty->display(‘my.tpl‘)//需要显示的模板文件,后缀名可以随便写
以上是关于smarty的应用的主要内容,如果未能解决你的问题,请参考以下文章
(13) PHP 随笔---Smarty模板引擎 缓存的高级应用 22