时间:2021-07-01 10:21:17 帮助过:20人阅读
知道了smarty的运行原理之后,就想写个post的实现过程,以下是实现post的代码,跟独自写php代码差不多,只是多了显示文件
配置文件:conf.php
代码如下:<?php
@header("Content-type: text/html; charset=UTF-8");
require '../libs/Smarty.class.php';
$my=new Smarty;
$my->template_dir ='templates/';
$my->compile_dir ='templates_c/';
$my->config_dir ='configs/';
$my->cache_dir ='cache/';
?>
index.php
代码如下:<?php
include 'conf.php';
$my->assign('content','welcome to arrival');
$my->assign('mylife',array("生活","吃饭","梦想","凉风","报仇","fuck someone","fuck you die"));
$my->display('kk.html');
?>
template下的kk.html【index.php的显示文件】
代码如下:
{html_select_time use_24_hours=true}
希望本文所述对大家的smarty程序设计有所帮助。