本文實例講述了CodeIgniter生成靜態(tài)頁的方法。分享給大家供大家參考,具體如下:
現(xiàn)在我們來開發(fā)如何讓CI框架生成靜態(tài)頁面.下面直接帖代碼:
$this->output->get_output();
使用這個方法,你可以可以得到將要輸出的數(shù)據(jù),并把它保存起來,留著它用(我們做新聞類型網(wǎng)站的時候,常常需要生成靜態(tài)的HTML文件).
$string = $this->output->get_output();
$this->load->helper('file');
write_file('./lianglong_codeigniter.html', $string);
比如我們要輸出的頁面是要加載某個視圖后的數(shù)據(jù),那么我們就在
$this->load->view('welcome_lianglong);
之后加入
$this->output->get_output();
并把值給一個變量如$lianglong存儲起來.再用CI的FILE中的write_file輔助函數(shù),生成你要的文件,如下例
function sc(){
$this->load->helper('file');
$this->load->view('welcome_message');
$lianglong=$this->output->get_output();
if ( !write_file('./lianglongfile.html', $lianglong))
{
echo 'Unable to write the file';
}
else
{
echo 'File written!';
}
}
或者:
function sc(){
$this->load->helper('file');
$liangdong=$this->load->view('welcome_message',$data,true);
if ( !write_file('./lianglongfile.html', $lianglong))
{
echo 'Unable to write the file';
}
else
{
echo 'File written!';
}
}
希望本文所述對大家基于CodeIgniter框架的PHP程序設(shè)計有所幫助。