smarty简单入门实例_php实例
程序员文章站
2022-04-11 18:33:43
...
本文以一个简单实例分析了smarty的用法。分享给大家供大家参考。具体分析如下:
kk.html
无标题文档
{$content}
{section name=truelife loop=$mylife}
{$mylife[truelife]}
{/section}
smarty建立配置文件、显示文件后即可,配置文件显示文件分开来,使美工跟开发工作能完美分开
配置页面代码:index.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/';
$my->assign('content','welcome to arrival');
$my->assign('mylife',array("生活","吃饭","梦想","凉风"));
$my->display('kk.html'); //显示smarty目录下的kk.html
?>
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/';
$my->assign('content','welcome to arrival');
$my->assign('mylife',array("生活","吃饭","梦想","凉风"));
$my->display('kk.html'); //显示smarty目录下的kk.html
?>
kk.html
复制代码 代码如下:
{$content}
{section name=truelife loop=$mylife}
{$mylife[truelife]}
{/section}
希望本文所述对大家的smarty程序设计有所帮助。
推荐阅读
-
SQL GROUP BY 详解及简单实例
-
Python多进程入门、分布式进程数据共享实例详解
-
Android Kotlin的使用及简单实例
-
5种PHP创建数组的实例代码分享
-
PHP实例分享判断客户端是否使用代理服务器及其匿名级别
-
用html5的canvas和JavaScript创建一个绘图程序的简单实例
-
Android中SurfaceView用法简单实例
-
巧用HTML5给按钮背景设计不同的动画简单实例
-
IIS6.0+PHP5.x+MySQL5.x+Zend3.0x+GD+phpMyAdmin2.8x通用安装实例(已经完成)
-
高性能web服务器框架Tornado简单实现restful接口及开发实例