模板引擎?No 正则而已
之前就觉得TP的那个模板引擎太不爽了,非常的蛋疼,所以参照PHPCMS的改了下,哈哈,自己看吧 无 /** * 模板函数 * @param string $template 模板文件名 * @param string $path 模板路径 * @param string $suffix 模板后缀 */function template($template = '', $p
之前就觉得TP 的那个模板引擎太不爽了,非常的蛋疼,所以参照PHPCMS的 改了下, 哈哈,自己看吧
/** * 模板函数 * @param string $template 模板文件名 * @param string $path 模板路径 * @param string $suffix 模板后缀 */ function template($template = '', $path = '', $suffix = '', $show_error = true) { $tpl_path = $path ? $path : (config('tpl_path') ? config('tpl_path') : './template/'); $tpl_suffix = $suffix ? $suffix : (config('tpl_suffix') ? config('tpl_suffix') : '.html'); if (empty($template)) { $template_file = $tpl_path . __MODULE__ . '/' . __CONTROLLER__ . '/' . __ACTION__; } else { if (!$path) { $pcount = substr_count($template, '/'); if ($pcount == 0) { $template_file = $tpl_path . __MODULE__ . '/' . __CONTROLLER__ . '/' . trim($template, '/'); } else if ($pcount == 1) { $template_file = $tpl_path . __MODULE__ . '/' . trim($template, '/'); } else { $template_file = $tpl_path . trim($template, '/'); } } else { $template_file = $path . trim($template, '/'); } } $template_file .= $tpl_suffix; if (!is_file($template_file)) { if ($show_error === true) { halt('模板文件不存在:' . $template_file); } } else { $cache_template = DATA_PATH . 'cache' . _DIR . 'template' . _DIR . __MODULE__ . _DIR . md5($template_file) . '.php'; if (is_file($cache_template) && config('tpl_cache') == true && (config('tpl_expire') == 0 || (@filemtime($cache_template) + config('tpl_expire')) < time())) { } else { template::template_compile($template_file, $cache_template); } return $cache_template; } }
<?php class template { /** * 编译模板 * @param string $template_file 模板文件 * @param string $cache_file 缓存文件 */ public static function template_compile($template_file, $cache_file) { if (!is_file($template_file)) { return false; } $content = file_get_contents($template_file); $cache_dir = dirname($cache_file); if (!is_dir($cache_dir)) { mkdir($cache_dir, 0777, true); } $content = self::parse_template($content); @file_put_contents($cache_file, $content); return $cache_file; } public static function parse_template($str) { //include $str = preg_replace("/\{template\s+(.+)\}/", "<?php include template(\\1,'','','',false); ?>", $str); $str = preg_replace("/\{include\s+(.+)\}/", "<?php include \\1; ?>", $str); $str = preg_replace("/\{php\s+(.+?)\}/", "<?php \\1?>", $str); $str = preg_replace("/\{!(.+?)\}/", "<?php \\1?>", $str); $str = preg_replace("/\{if\s+(.+?)\}/", "<?php if(\\1) { ?>", $str); $str = preg_replace("/\{else\}/", "<?php } else { ?>", $str); $str = preg_replace("/\{elseif\s+(.+?)\}/", "<?php } elseif (\\1) { ?>", $str); $str = preg_replace("/\{\/if\}/", "<?php } ?>", $str); //for $str = preg_replace("/\{for\s+(.+?)\}/", "<?php for(\\1) { ?>", $str); $str = preg_replace("/\{\/for\}/", "<?php } ?>", $str); //++ -- $str = preg_replace("/\{\+\+(.+?)\}/", "<?php ++\\1; ?>", $str); $str = preg_replace("/\{\-\-(.+?)\}/", "<?php ++\\1; ?>", $str); $str = preg_replace("/\{(.+?)\+\+\}/", "<?php \\1++; ?>", $str); $str = preg_replace("/\{(.+?)\-\-\}/", "<?php \\1--; ?>", $str); //loop $str = preg_replace("/\{loop\s+(\S+)\s+(\S+)\}/", "<?php \$n=1;if(is_array(\\1)) foreach(\\1 AS \\2) { ?>", $str); $str = preg_replace("/\{loop\s+(\S+)\s+(\S+)\s+(\S+)\}/", "<?php \$n=1; if(is_array(\\1)) foreach(\\1 AS \\2 => \\3) { ?>", $str); $str = preg_replace("/\{\/loop\}/", "<?php \$n++;}unset(\$n); ?>", $str); //函数 $str = preg_replace("/\{:([a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff:]*\(([^{}]*)\))\}/", "<?php echo \\1;?>", $str); $str = preg_replace("/\{~([a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff:]*\(([^{}]*)\))\}/", "<?php \\1;?>", $str); //变量 $str = preg_replace("/\{\\$([a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff:]*\(([^{}]*)\))\}/", "<?php echo \\1;?>", $str); $str = preg_replace("/\{(\\$[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*)\}/", "<?php echo \\1;?>", $str); $str = preg_replace("/\{\\$([a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff:]*\->[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff:])\}/", "<?php echo \\1;?>", $str); $str = preg_replace("/\{(\\$[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*)\|([^{}]*)\}/", "<?php if(!empty(\\1)){echo \\1;}else{echo \\2;}?>", $str); $str = preg_replace('/\{(\\$[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*(?:\->)[^\}]+)\}/',"<?php echo \\1;?>", $str); //数组 $str = preg_replace("/\{(\\$[a-zA-Z0-9_\[\]\'\"\$\x7f-\xff]+)\}/es", "self::addquote('<?php echo \\1;?>')", $str); $str = preg_replace("/\{(\\$[a-zA-Z0-9_\[\]\'\"\$\x7f-\xff]+)\|([^{}]*)\}/es", "self::addquote('<?php if(!empty(\\1)){echo \\1;}else{echo \\2;} ?>')", $str); //常量 $str = preg_replace("/\{([A-Z_\x7f-\xff][A-Z0-9_\x7f-\xff]*)\}/s", "<?php echo \\1;?>", $str); //扩展标签 $str = preg_replace("/\{tag:(\w+)\s+([^}]+)\}/ie", "self::tag('$1','$2')", $str); $str = preg_replace("/\{:tag:(\w+)\s+([^}]+)\}/ie", "self::tag('$1','$2',true)", $str); return $str; } public static function addquote($var) { return str_replace("\\\"", "\"", preg_replace("/\[([a-zA-Z0-9_\-\.\x7f-\xff]+)\]/s", "['\\1']", $var)); } public static function tag($name, $data, $echo = false) { preg_match_all("/([a-z]+)\=[\"]?([^\"]+)[\"]?/i", stripslashes($data), $matches, PREG_SET_ORDER); foreach ($matches as $v) { if (in_array($v[1], array('action', 'cache', 'return'))) { $$v[1] = $v[2]; continue; } $datas[$v[1]] = $v[2]; } if (!isset($action) || empty($action)) { //方法 return false; } if (isset($cache)) { //缓存 $cache = intval($cache); } else { $cache = false; } if (!isset($return) || empty($return)) { $return = '$data'; } $tag_file = EXT_PATH . 'tags' . _DIR . $name . '_tag' . EXT; if (!is_file($tag_file)) { return false; } $str = '<?php '; if ($cache !== false) { $cache_name = 'tag/'.$name.'_'.$action. to_guid_string($datas); $str .= '$cache = cache::getInstance();'; $str .= $return . '=$cache->get("' . $cache_name . '");'; $str .= 'if(' . $return . ' === false){'; $str .= '$params = ' . self::filter_var($datas) . ';'; $str .= '$tag = load_ext("tags/' . $name . '_tag",true);'; $str .= $return . '=$tag->' . $action . '($params);'; $str .= '$cache->set("' . $cache_name . '",' . $return . ',' . $cache . ');'; $str .= '}'; if ($echo == true) { $str .= 'echo ' . $return . ';'; } $str .= ' ?>'; } else { $str .= '$params = ' . self::filter_var($datas) . ';'; $str .= '$tag = load_ext("tags/' . $name . '_tag",true);'; if ($echo) { $str .= 'echo $tag->' . $action . '($params);'; } else { $str .= $return . '=$tag->' . $action . '($params);'; } $str .= ' ?>'; } return $str; } protected static function filter_var($data) { $str = var_export($data, true); //$str = preg_replace('/\'\$(\w+?)\'/', "\$\\1", $str); $str = preg_replace('/\'/', '"', $str); $str = preg_replace('/\s{2,}/', '', $str); return $str; } }
public function test(){ include template(); }
{if !empty($result)} {loop $result $r} <tr> <td>{$r['order_sn']}</td> <td>{$r['name']}</td> <td>{$r['mobile']}</td> <td>{:fdate($r['add_time'])}</td> <td>{if $r['status'] == 0}处理中{elseif $r['status'] ==1}已处理{else}无效{/if}</td> </tr> {/loop} {else} <tr> <td colspan="9"> <span style="padding:10px; display:block;">您还没有收到任何预约</span> </td> </tr> {/if}

ホットAIツール

Undresser.AI Undress
リアルなヌード写真を作成する AI 搭載アプリ

AI Clothes Remover
写真から衣服を削除するオンライン AI ツール。

Undress AI Tool
脱衣画像を無料で

Clothoff.io
AI衣類リムーバー

AI Hentai Generator
AIヘンタイを無料で生成します。

人気の記事

ホットツール

メモ帳++7.3.1
使いやすく無料のコードエディター

SublimeText3 中国語版
中国語版、とても使いやすい

ゼンドスタジオ 13.0.1
強力な PHP 統合開発環境

ドリームウィーバー CS6
ビジュアル Web 開発ツール

SublimeText3 Mac版
神レベルのコード編集ソフト(SublimeText3)

ホットトピック











PHP 正規表現は、テキストの処理と変換のための強力なツールです。テキスト コンテンツを解析し、特定のパターンに従って置換またはインターセプトすることで、テキスト情報を効果的に管理できます。その中でも、正規表現の一般的な応用例は、特定の文字で始まる文字列を置換することです。

Golang の正規表現では、パイプ文字 | を使用して複数の単語または文字列を一致させ、各オプションを論理 OR 式として区切ります。例: 「fox」または「dog」に一致します: fox|dog は「quick」、「brown」または「lazy」に一致します: (quick|brown|lazy) 「Go」、「Python」または「Java」に一致します: Go| Python |Java は単語または 4 桁の郵便番号と一致します: ([a-zA

PPTのマスキングについては、馴染みのない方も多いと思いますが、PPTを作成する際によく理解せず、自分の好きなものを作るために適当に作っている人が多いため、PPTのマスキングの意味が分からない、理解できないという人も多いと思います。 「このマスクが何をするのか知っています。そして、それが写真の単調さを軽減できることさえ知りません。学びたい友達は、来て学び、あなたの PPT 画像に PPT マスクを追加してください。単調さを減らしてください。」では、PPT マスクを追加するにはどうすればよいでしょうか?以下をお読みください。 1. まず、PPT を開き、空白の画像を選択し、次に [背景形式の設定] を右クリックして単色を選択します。 2. [挿入]をクリックし、ワードアートをクリックし、単語を入力します。 3. [挿入]をクリックし、[図形]をクリックします。

正規表現を使用して PHP で中国語を削除する方法: 1. PHP サンプル ファイルを作成する; 2. 中国語と英語を含む文字列を定義する; 3. "preg_replace('/([\x80-\xff]*)/i', '',$a);" 通常の方法では、クエリ結果から中国語の文字を削除できます。

C++ テンプレートの特殊化は、関数のオーバーロードと書き換えに影響します。 関数のオーバーロード: 特殊化されたバージョンでは、特定の型のさまざまな実装が提供されるため、コンパイラーが呼び出すことを選択する関数に影響します。関数のオーバーライド: 派生クラスの特殊バージョンは、基本クラスのテンプレート関数をオーバーライドし、関数呼び出し時の派生クラス オブジェクトの動作に影響を与えます。

PHP 電子メール テンプレート: 電子メール コンテンツのカスタマイズとパーソナライズ 電子メールの人気と広範な使用に伴い、従来の電子メール テンプレートでは、パーソナライズおよびカスタマイズされた電子メール コンテンツに対するユーザーのニーズを満たすことができなくなりました。 PHP プログラミング言語を使用して、カスタマイズおよびパーソナライズされた電子メール テンプレートを作成できるようになりました。この記事では、PHP を使用してこの目標を達成する方法を説明し、いくつかの具体的なコード例を示します。 1. 電子メール テンプレートを作成する まず、基本的な電子メール テンプレートを作成する必要があります。このテンプレートは HTM にすることができます

10月8日のニュースによると、米国の自動車市場は水面下で変化を遂げており、これまで親しまれてきた6気筒や8気筒エンジンが徐々にその優位性を失い、3気筒エンジンが台頭しつつあるという。 10月8日のニュースは、米国の自動車市場が水面下で変化を遂げていることを示した。かつて愛された6気筒や8気筒エンジンは徐々にその優位性を失い、3気筒エンジンが台頭し始めているが、アメリカ人の多くの心の中には大排気量モデルが大好きで「アメリカンビッグV8」というイメージがある。常にアメリカ車の代名詞であり続けています。しかし、最近海外メディアが発表したデータによると、米国の自動車市場の状況は大きく変化しており、水面下での争いは激化している。 2019 年以前は、米国が

テンプレートを使用すると、メモを取る作業が速くなり、重要なアイデアをより効果的に捉えることができることをご存知ですか? OneNote には、使用できる既製のテンプレートのセットが用意されています。最も良い点は、ニーズに応じてテンプレートをデザインすることもできることです。学生でも、企業戦士でも、クリエイティブな仕事をしているフリーランサーでも。 OneNote テンプレートを使用すると、自分のスタイルに合った構造と形式で重要なメモを記録できます。テンプレートは、メモを取るプロセスの概要にすることができます。アマチュアはただメモを取るだけですが、プロはメモを取り、テンプレートを使用して適切に構造化されたメモを通じてそこからつながりを引き出します。 OneNote でテンプレートを使用する方法を見てみましょう。既定の OneNote テンプレートを使用する ステップ 1: キーボードの Windows + R を押します。オノタイプ
