打包下ダウンロード
Pain.php
复制代码代码如下:
class Pain
{
public $var=array();
パブリック $tpl=array();
//テンプレートに変数を割り当てるメソッドです
public function assign($variable,$value=null)
{
$this->var[$variable]=$value ;
}
public function display($template_name,$return_string=false)
{
//まず tmp dir に tmp ファイルが存在するかどうかを調べます。
if(file_exists("tmp/temp_file.php"))
{
unlink("tmp/temp_file.php");
}
extract($this->var);
$tpl_content=file_get_contents($template_name);
$tpl_content=str_replace("{@", "$tpl_content=str_replace("@}", " ?>", $tpl_content);
///tmp ディレクトリにファイルを作成し、その中に $tpl_contentn を配置してから、
// 'include' メソッドを使用してそれをロードします。
$tmp_file_name="temp_file.php";
//$tmp はハンドラーです
$tmp=fopen("tmp/".$tmp_file_name, "w");
fwrite($tmp, $tpl_content);
「tmp/」.$tmp_file_name を含める;
}
}
?>
复制代码代码如下:
require_once "Pain.php";
$pain=新しい痛み();
$songyu="songyu nb";
$zhangyuan="zhangyuan sb";
$pain->assign("ソンギュ",$ソンギュ);
$pain->assign("張元",$張元);
$pain->display("new_file.html");
?>
复制代 代码如下:
"http://www.w3.org/TR/html4/strict.dtd">