您好,登錄后才能下訂單哦!
<?php /**ob_start(); ob_get_contents(); ob_end_flush(); ** **php頁面緩存的使用方法,php頁面緩存的小例子,如果數據庫查詢量較大,可以用cache來解決 **/ function cache_start($dir,$expiretime){ $filename = $dir.'\\'.sha1($_SERVER['REQUEST_URI']).'.html'; ob_start(); if(file_exists($filename) && (time()- filemtime($filename)<$expiretime)){ include($filename); ob_end_flush(); exit(); } mkdir($dir); } function cache_end($dir){ $filename = $dir.'\\'.sha1($_SERVER['REQUEST_URI']).'.html'; echo $filename; $fp = fopen($filename,'w'); fwrite($fp,ob_get_contents()); fclose($fp); ob_end_flush(); } $dir = "D:\\\\php"; cache_start($dir, 10); cache_end($dir);
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。