<?php
$header = 'this is header';
$footer = 'this is footer';
$list = array(
0 => array(
'name' => 'vboy',
'pass' => '123456',
), 1 => array(
'name' => 'json',
'pass' => '111111',
));ob_start(); //開啟輸出緩衝區 turn on output buffering
include 'a.tpl';
$content = ob_get_contents(); //返回輸出緩衝區內容 return the contents of the output buffer
ob_end_clean(); //清空輸出緩衝區,並關閉緩衝區 clean (erase) the output buffer and turn off output buffering
//ob_end_flush(); //輸出緩衝區內容,並關閉緩衝區 flush (send) the output buffer and turn off output buffering
//ob_get_clean(); //返回輸出內容並清空緩衝區 get current buffer contents and delete current output buffer
//ob_get_flush(); //返回輸出內容並關閉緩衝區 flush the output buffer, return it as a string and turn off output buffering
echo $content;
模板檔案a.tpl見下方:
<?php echo $header; ?>
<?php foreach ($list as $value) ?>
<?php echo $footer; ?>
PHP 自製日曆
最近的乙個專案中,需要將資料用日曆方式顯示,網上有很多的js外掛程式,後面為了自己能有更大的控制權,決定自己製作乙個日曆顯示。如下圖所示 1 new乙個calendar類 2 初始化兩個下拉框中的資料,年份與月份 3 初始化要搜尋的年份和月份 4 計算得出日曆中每一天的資料資訊,包括css 天數 r...
php模板如何使用,PHP View,使用模板
好吧,我的問題很簡單,但是很難接受該解決方案,但是無論如何.接下來,我有乙個 微型框架 可以編寫單個方案,對我有很大幫助,可以加速但是,在某種程度上,問題仍然存在,在某種程度上,使用模板方案非常容易,也非常有趣,因為當您必須更改與視覺化相關的任何內容時,模板只會更改,但是,及時渲染此模板,這是最好的...
DEDE模板中如何執行php指令碼和php變數的使用
在使用dede模板的時候,經常會需要直接對dede資料庫的底層字段進行處理,如果dede中沒有相應的函式的時候,往往就需要我們想辦法來處理了。舉例 我想取出資料表addonimages中的某一條記錄的typeid這個字段,然後在瀏覽器中輸出typeid乘以2的結果。注 這裡的typeid值為6 起初...