以下にコードを直接送信します
コードをコピーします コードは次のとおりです:
/*
ファイル: config_smarty.php
完了:Smarty の構成
作成者:www.5dkx.com
日付:2009-12-21
*/
include_once("../libs /smarty.class.php");
クラス MySmarty extends Smarty{
関数 __construct()
{
$this->Smarty();
$this->config_dir = "../config ";
$this->cache_dir = "../cache";
$this->template_dir = "../template"; = "../template_c";
$this->cache = false;
}
}
$smart = new MySmarty(); title","title ");
$smart->assign("content","content");
$smart->display('article.tpl');
$output = $smart-> fetch('article.tpl');
$Path = "../html/1.html";
$fp = fopen($Path,"w"); fwrite($fp, $output);
fclose($fp)>