二種php產生html頁面實現代碼_PHP教程

來源:互聯網
上載者:User
二種php教程產生html頁面實現代碼

利用fopen fread fwrite fcolse開啟檔案形式

$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 個位元組時就會停止讀取檔案,視乎先碰到哪種情況。

$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函數

$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

http://www.bkjia.com/PHPjc/631729.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/631729.htmlTechArticle二種php教程產生html頁面實現代碼 利用fopen fread fwrite fcolse開啟檔案形式 ?php $fp = fopen (templets.html,a); if ($fp){ $fup = fread ($fp,filesize(templets.html...

  • 相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.