搜尋

首頁  >  問答  >  主體

smarty生成静态页的一些疑问?

一般用到smarty的时候都是 先assign、display,然后在一个模板页 .html里头是 section或foreach取出。。。链接的样子也是 .php?aid=XX &cid=XX 这样。如果生成静态页的话,google了一下都是用smarty的fetch函数。。。。。下面不知道怎么办了。。。。。

phpcn_u814phpcn_u8142837 天前833

全部回覆(2)我來回復

  • 数据分析师

    数据分析师2017-10-01 00:35:19

    smarty產生靜態頁的一些問題? -PHP中文網路問答-smarty產生靜態頁的一些問題? -PHP中文網問答

    圍觀一下哦,學習一下。

    回覆
    0
  • 怪我咯

    怪我咯2017-02-27 17:43:46

    fetch获取html,直接保存为文件呀。
    [mw_shl_code=php,true]$smarty->assign("Name","Fred");
    //捕获输出
    $output = $smarty->fetch("index.tpl");
    //保存为静态文件
    file_put_contents("index.html", $output);
    [/mw_shl_code]

    回覆
    0
  • 取消回覆