为何smarty循环fetch的话,每次内容都一样
程序员文章站
2022-06-10 12:26:23
...
为什么smarty循环fetch的话,每次内容都一样
各位大哥,小弟初学php和smatry,请指教。
为什么文件都生成了,就是里面的内容都一样的。
我又打印了下,但是打印出来的都是正确的。
------解决方案--------------------
$content = $smarty->fetch ( "products.tpl",ID之类的参数 );
这样试试
各位大哥,小弟初学php和smatry,请指教。
为什么文件都生成了,就是里面的内容都一样的。
我又打印了下,但是打印出来的都是正确的。
foreach ( $category as $c ) {
$products = $util->getArrayByQueryString ( "select * from product_detail where sid=$c[id]" );
$smarty->assign ( "html_title", $c [name] . ':所有子类产品' );
$smarty->assign ( "products", $products );
// foreach ( $products as $p ) {
// echo $p [id] . $p [name] . '
';
// }
$content = $smarty->fetch ( "products.tpl" );
$file_name = './products/' . $c [id] . '.html';
//html生成
create_html ( $file_name, $content );
}
------解决方案--------------------
$content = $smarty->fetch ( "products.tpl",ID之类的参数 );
这样试试
相关文章
相关视频
- 教你使用PHP数据库迁移工具“Phinx”
- 详解win10下PHP的安装配置(以php5.6为...
- php Swoole实现毫秒定时计划任务(详解)
- PHP实现检测客户端是否使用代理服务器及其匿名级别...
- 为何smarty循环fetch的话,每次内容都一样