ob缓存实例

实例一:

[html]  view plain  copy
 
  1. //ob缓冲  
  2. $filename="aa.html";  
  3. ob_start();  
  4. if(file_exists($filename))  
  5. {  
  6.     echo "缓存页面";  
  7.     echo "br>";  
  8.     echo file_get_contents($filename);  
  9.   
  10. }  
  11. else  
  12. {  
  13.     echo "这是要缓存到页面的内容";  
  14.     $content=ob_get_contents();  
  15.     $fb=fopen($filename,'w');  
  16.     fwrite($fb,$content);  
  17.     fclose($fb);  
  18. }  
实例二:

[html]  view plain  copy
 
  1. php  
  2. $filename="aa2.html";  
  3. if(file_exists($filename))  
  4. {  
  5.     echo "缓存中读取的";  
  6.     $files=file_get_contents($filename);  
  7.     echo $files;die;  
  8. }  
  9. else  
  10. {  
  11.     $dsn = "mysql:host=127.0.0.1;dbname=数据库";  
  12.     $db = new PDO($dsn, '数据库账号','数据库密码');  
  13.     $rs = $db->query("SELECT * FROM ecs_users");  
  14.     $rs->setFetchMode(PDO::FETCH_ASSOC);  
  15.     $arr = $rs->fetchAll();  
  16.     //首先要开启缓冲  
  17.     ob_start();  
  18. }  
  19. ?>  
  20. >  
  21. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">  
  22. <head>  
  23.     <meta http-equiv="Content-Type" content="text/html;charset=UTF-8">  
  24.     <title>Documenttitle>  
  25. head>  
  26. <body>  
  27. <table border="1">  
  28.     <tr>  
  29.         <td>用户IDtd>  
  30.         <td>用户邮箱td>  
  31.         <td>用户姓名td>  
  32.     tr>  
  33.     php  
  34.     foreach($arr as $val)  
  35.     {  
  36.     ?>  
  37.     <tr>  
  38.         <td>php echo $val['user_id']?>td>  
  39.         <td>php echo $val['email']?>td>  
  40.         <td>php echo $val['user_name']?>td>  
  41.     tr>  
  42.     php  
  43.     }  
  44.     ?>  
  45. table>    
  46. body>  
  47. html>  
  48. php  
  49. //获取ob缓冲的数据  
  50. $content=ob_get_contents();  
  51. //创建文件  
  52. $filename="aa2.html";  
  53. //写入文件  
  54. file_put_contents($filename,$content);  
  55. ?>  
实例一与实例二中

[html]  view plain  copy
 
  1. $fb=fopen($filename,'w');  
  2. fwrite($fb,$content);  
  3. fclose($fb);  
  4. 与  
  5. file_put_contents($filename,$content);  
  6. 意义一样,写入文件  

你可能感兴趣的:(缓存)