smarty简单入门实例
更新时间:2014年11月28日 10:49:21 投稿:shichen2014
这篇文章主要介绍了smarty简单入门实例,包括了配置文件的用法与模板文件的使用,非常具有实用价值,需要的朋友可以参考下
本文以一个简单实例分析了smarty的用法。分享给大家供大家参考。具体分析如下:
smarty建立配置文件、显示文件后即可,配置文件显示文件分开来,使美工跟开发工作能完美分开
配置页面代码:index.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/';
$my->assign('content','welcome to arrival');
$my->assign('mylife',array("生活","吃饭","梦想","凉风"));
$my->display('kk.html'); //显示smarty目录下的kk.html
?>
@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
?>
kk.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>
{$content}
{section name=truelife loop=$mylife}
{$mylife[truelife]}
{/section}
</body>
</html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
</head>
<body>
{$content}
{section name=truelife loop=$mylife}
{$mylife[truelife]}
{/section}
</body>
</html>
希望本文所述对大家的smarty程序设计有所帮助。
相关文章
通过修改配置真正解决php文件上传大小限制问题(nginx+php)
对于nginx+php的一些网站,上传文件大小会受到多个方面的限制,一个是nginx本身的限制,限制了客户端上传文件的大小,一个是php.ini文件中默认了多个地方的设置。所以为了解决上传文件大小限定的问题必须要做出多处修改。以下整理了几个地方。2015-09-09在Yii2特定页面如何禁用调试工具栏Debug Toolbar详解
这篇文章主要给大家介绍了关于在Yii2特定页面如何禁用调试工具栏Debug Toolbar的相关资料,文中通过详细的示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面来一起看看吧。2017-08-08详解thinkphp5+swoole实现异步邮件群发(SMTP方式)
这篇文章主要介绍了详解thinkphp5+swoole实现异步邮件群发(SMTP方式),具有一定的参考价值,感兴趣的小伙伴们可以参考一下2017-10-10
最新评论