コードを下に直接送信します
コードをコピーします コードは次のとおりです:
/*
file:config_smarty.php
done: Smarty を設定する
author: www.5dkx.com
date:2009-12-21
*/
include_once("../libs/smarty.class.php");
class MySmarty extends Smarty{
function __construct()
{
$this->Smarty();
$this->config_dir = "../config";
$this->cache_dir = "../cache";
$this->template_dir = "../template"; ;compile_dir = ". ./template_c";
$this->cache = false;
}
$smart = new MySmarty();
$smart->assign("content","content");
$smart->display('article.tpl');
$output = $smart->fetch('article.tpl');
$Path = " ../html/1.html";
$fp = fopen($fp,$output);
fclose($fp);
http://www.bkjia.com/PHPjc/321558.html
www.bkjia.com
truehttp://www.bkjia.com/PHPjc/321558.html技術記事以下のようにコードを直接送信し、コードをコピーします: ?php /* file:config_smarty.php 完了: Smarty の構成 author:www.5dkx.com date:2009-12-21 */ include_once("../libs/smarty .class.php"); cl...