这篇文章主要来源gaodai$ma#com搞$代*码网介绍了smarty内置函数foreach用法,实例分析了smarty内置的foreach函数使用技巧与相关注意事项,需要的朋友可以参考下
本文实例讲述了smarty内置函数foreach用法。分享给大家供大家参考。具体如下:
输出文件:index.php
代码如下:
<?php
require_once(‘libs/Smarty.class.php’);
$smarty = new Smarty();
$smarty->setTemplateDir($_SERVER[‘DOCUMENT_ROOT’].”/php/templates/”);
$smarty->setCompileDir($_SERVER[‘DOCUMENT_ROOT’].”/php/templates_c/”);
$smarty->setCacheDir($_SERVER[‘DOCUMENT_ROOT’].”/php/cache/”);
$smarty->caching = false;
require_once(‘libs/Smarty.class.php’);
$smarty = new Smarty();
$smarty->setTemplateDir($_SERVER[‘DOCUMENT_ROOT’].”/php/templates/”);
$smarty->setCompileDir($_SERVER[‘DOCUMENT_ROOT’].”/php/templates_c/”);
$smarty->setCacheDir($_SERVER[‘DOCUMENT_ROOT’].”/php/cache/”);
$smarty->caching = false;
$name = array(“喜洋洋”,”美洋洋”,”懒洋洋”,”哈哈哈”);
$family = array(“husband”=>”喜洋洋”,”wife”=>”美洋洋”,”boy”=>”懒洋洋”,”girl”=>”哈哈哈”);
$smarty->assign(“name”,$name);
$smarty->assign(“family”,$family);
$smarty->display(“temp.htm”);
?>
以上就是smarty内置函数foreach用法实例的详细内容,更多请关注gaodaima搞代码网其它相关文章!