欢迎大家赞助一杯啤酒🍺 我们准备了下酒菜:Formal mathematics/Isabelle/ML, Formal verification/Coq/ACL2, C++/F#/Lisp
Smarty
来自开放百科 - 灰狐
(版本间的差异)
(→Links) |
|||
第24行: | 第24行: | ||
?> | ?> | ||
==Links== | ==Links== | ||
− | *http:// | + | *http://www.smarty.net/ |
*http://docs.huihoo.com/smarty/ | *http://docs.huihoo.com/smarty/ | ||
+ | |||
+ | {{comment}} | ||
[[Category:Template]] | [[Category:Template]] | ||
[[Category:PHP]] | [[Category:PHP]] |
2010年11月12日 (五) 13:32的最后版本
您可以在Wikipedia上了解到此条目的英文信息 Smarty Thanks, Wikipedia. |
Smarty : PHP Template Engine
[编辑] Start
templates\index.tpl
{* Smarty *} Hello, {$name}!
hello.php
<?php require('C:/wamp/www/smarty/Smarty.class.php'); // Windows require('/usr/local/lib/php/Smarty/Smarty.class.php'); // Linux $smarty = new Smarty;
$smarty->template_dir = 'templates/'; $smarty->compile_dir = 'templates_c/'; $smarty->config_dir = 'configs/'; $smarty->cache_dir = 'cache/';
$smarty->assign('name','Smarty'); $smarty->display('index.tpl'); ?>
[编辑] Links
<discussion>characters_max=300</discussion>
分享您的观点