ホームページ  >  記事  >  php教程  >  PHP SmartyテンプレートからHTMLドキュメントを生成する方法

PHP SmartyテンプレートからHTMLドキュメントを生成する方法

WBOY
WBOYオリジナル
2016-06-13 12:17:37934ブラウズ

以下にコードを直接送信します

コードをコピーします コードは次のとおりです:


/*
ファイル: 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)>


声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。