二種php教程生成html頁面實現代碼
利用fopen fread fwrite fcolse打開文件形式
<?php
$fp = fopen ("templets.html","a");
if ($fp){
$fup = fread ($fp,filesize("templets.html"));
$fp2 = fopen ("html.shtml","w");
if ($fwrite ($fp2,$fup)){
$fclose ($fp);
$fcolse ($fp2);
die ("寫入模板成功");
} else {
fclose ($fp);
die ("寫入模板失敗!");
}
}
?>
php讀取文件,fread是用來讀取用fopen打開的文件內容的,下面我們就來看看fread與gets 實例教程吧.
定義和用法
fread() 函數讀取文件(可安全用於二進制文件)。
語法
fread(file,length)參數 描述
file 必需。規定要讀取打開文件。
length 必需。規定要讀取的最大字節數。
說明
fread() 從文件指針 file 讀取最多 length 個字節。該函數在讀取完最多 length 個字節數,或到達 eof 的時候,或(對於網絡流)當一個包可用時,或(在打開用戶空間流之後)已讀取了 8192 個字節時就會停止讀取文件,視乎先碰到哪種情況。
<?php
$file = fopen("test.txt","r");
fread($file,filesize("test.txt"));
fclose($file);
?>
更多詳細內容請查看:http://www.bKjia.c0m/phper/18/753bc9c01fa5a721a81c63887ddccb47.htm
緩存輸出 ob_end_clean ob_start ob_get_length ob_get_contents函數
<?php
$s_fname = "93e.php";
$o_fname = "93e.htm";
ob_end_clean();
ob_start();
include($s_fname);
$length = ob_get_length();
$buffer = ob_get_contents();
$buffer = eregi_replace("r","",$buffer);
ob_end_clean();$fp = fopen($o_fname,"w+");
fwrite($fp,$buffer);
fclose($fp);
?>
三個函數吧:"ob_start()、ob_end_clean()、ob_get_contents()"
ob_start():是打開緩沖區的,就是要把您需要生成的靜態文件的內容緩存在這裡;
ob_get_contents():是讀出緩沖區裡的內容,下面有代碼為例;
ob_end_clean():這個比較重要,只有使用了這個函數後,緩沖區裡的內容才會讀取出來
更多詳細內容請查看:http://www.bKjia.c0m/phper/php-cy/35433.htm