前回リリースされたシンプレット クラス ( http://bbs.phpchina.com/thread-85257-1-1.html ) の後、多次元配列、コメント、非サポートなどの多くの欠陥があることが判明しました。キャッシュ機能、今回はこれらの機能をすべて追加します! ! !
ご興味があれば、次回、このクラスを作成するための私のアイデアと方法について説明するチュートリアルを公開します。 ! !応援していただける方はフォローして応援していただけますと幸いです!
PHPコード:
simplet.class.php
<?php
クラス SimpleT {
プライベート $t_vars;
プライベート $templates_dir;
プライベート $templates_c_dir;
プライベート $キャッシュ;
プライベート $cache_dir;
パブリック関数 __construct() {
$this->templates_dir = './templates/';
$this->templates_c_dir = './templates_c/';
$this->キャッシュ = 0;
$this->cache_dir = './cache/';
}
パブリック関数 setDir($dir, $type = 'テンプレート') {
if(is_dir($dir)) {
if($type == 'テンプレート')
$this->templates_dir = rtrim($dir, '/').'/';
elseif($type == 'template_c')
$this->templates_c_dir = rtrim($dir, '/').'/';
elseif($type == 'キャッシュ')
$this->cache_dir = rtrim($dir, '/').'/';
それ以外
false を返します。
true を返します。
} それ以外 {
false を返します。
}
}
パブリック関数キャッシュ($time) {
if(is_numeric($time)) {
$this->キャッシュ = $time;
true を返します。
} それ以外 {
false を返します。
}
}
パブリック関数 assign($var, $value = NULL) {
if (is_array($var)) {
foreach ($var as $key => $val) {
$this->t_vars[$key] = $val;
}
} それ以外 {
$this->t_vars[$var] = $value;
}
}
プライベート関数 comp($filename) {
試す {
if(!$fp = fopen($filename, 'r')) {
throw new Exception('開けません ' . $filename);
}
$filesize = ファイルサイズ($filename);
if($filesize <= 0) {
throw new Exception('ファイル サイズは > 0 でなければなりません ' );
}
$content = fread($fp, $filesize);
fclose($fp);
設定を解除($fp);
$content = preg_replace("/<%=([$a-zA-Z0-9_]{1,})%>/","<?php echo \$$1 ;?>", $content);
$content = preg_replace("/<%([$a-zA-Z0-9_]{1,}).loop%>/", "<?php foreach( \$$1 as \$$1_key => \$$1_val ) { ?>",$content);
$content = preg_replace("/<%([$a-zA-Z0-9_]{1,}).loop(([$a-zA-Z0-9_]{1,})) %>/", "<?php foreach( \$$1 as \$$2 ) { ?>", $content);
$content = preg_replace("/<%([$a-zA-Z0-9_]{1,}).loop(([$a-zA-Z0-9_]{1,}),( [$a-zA-Z0-9_]{1,}))%>/", "<?php foreach( \$$1 as \$$2 => \$$3 ) { ?>", $content);
$content = preg_replace("/<%([$a-zA-Z0-9_]{1,}).key%>/", "<?php echo \$$1_key ;?>", $コンテンツ);
$content = preg_replace("/<%([$a-zA-Z0-9_]{1,}).value%>/", "<?php echo \$$1_val ;?>", $コンテンツ);
$content = preg_replace("/<%([$a-zA-Z0-9_]{1,})\?%>/", "<?php if( \$$1 == true) { ? >", $content);
$content = preg_replace("/<%end%>/","<?php } ?>", $content);
$content = preg_replace("/<%##common##%>([^<%##end##%>]{0,})<%##end##%>/", "<?php n/* $1 */n?>", $content);
if (preg_match_all("/<%{([^(}%>)]{1,})}%>/", $content, $files)) {
$this->comp($this->templates_dir . $files[1][0]);
}
$content = preg_replace("/<%{([^(}%>)]{1,})}%>/", "<?php include '{$this->templates_c_dir}simplet_comp_$1.php'; ? >", $content);
$content をエコーします。
$fp = fopen($this->templates_c_dir . 'simplet_comp_' .basename($filename) . '.php', 'w');
if(!fwrite($fp, $content)) {
throw new Exception(' ' . $filename にコンテンツを書き込めません);
}
fclose($fp);
} catch (例外 $e) {
echo $e->getMessage();
}
true を返します。
}
public function display($filename) {
$filename = $this->templates_dir 。
if(!file_exists($filename)) {
false を返します。
}
$t_filename_c = $this->templates_c_dir . 'simplet_comp_' .'.php';
if(!file_exists($t_filename_c) || filemtime($t_filename_c) < filemtime($filename)) {
$this->comp($filename);
}
if($this->キャッシュ > 0) {
$cache_file = $this->cache_dir .basename($filename);
if(!file_exists($cache_file) || (time() - filemtime($cache_file)) > $this->cache) {
ob_start();
foreach ($this->t_vars as $key => $val) {
$$key = $val;
}
include($t_filename_c);
$content = ob_get_contents();
ob_end_clean();
$fp = fopen($cache_file, 'w');
fwrite($fp, $content);
fclose($fp);
$content をエコーします。
unset($content);
} それ以外 {
include($cache_file);
}
} それ以外 {
foreach ($this->t_vars as $key => $val) {
$$key = $val;
}
include($t_filename_c);
}
}
}
?>
PHP コード:
test.php
<?php
require_once('simplet.class.php');
$t = new SimpleT();
$t->cache(10);//キャッシュ機能を有効にし、有効期限を10秒に設定します
$t->assign('arrays', array(array('hello','world')));
$t->assign('条件',false);
$t->display('index.php');
?>
PHP コード:
Index.php (テンプレート ファイル、templates/ フォルダーに配置)
<%##common##%>
これがコメントで、以下が多次元配列ループです。
<%##end##%>
<%arrays.loop(value)%>
<%value.loop(name)%>
<%=名前%>
<%end%>
<%end%>
<%##common##%>
以下は条件判定です
<%##end##%>
<%条件?%>
<h1>条件は true</h1>
<%end%>
<%##common##%>
以下はインクルードファイルです()
<%##end##%>
<%{ファイル名.php}%>