本文地址:http://www.cnblogs.com/aiweixiao/p/7535351.html 歡迎關註我的微信公眾號哈 “ 程式員的文娛情懷” http://t.cn/RotyZtu 【背景】:由於 file函數是一次性將所有內容讀入記憶體,而php為了防止一些寫的比較糟糕的程式占用太多的 ...
本文地址:http://www.cnblogs.com/aiweixiao/p/7535351.html
歡迎關註我的微信公眾號哈 “ 程式員的文娛情懷” http://t.cn/RotyZtu
【背景】:由於 file函數是一次性將所有內容讀入記憶體,而php為了防止一些寫的比較糟糕的程式占用太多的記憶體而導致系統記憶體不足,使伺服器出現宕機,所以要想點好辦法。
【思路】:
01 思路1:利用php執行linux的命令,將一個文件內容(a.log)複製到另一個文件中(b.log) cat a.log >>b.log 02 思路2:用php執行linux的head命令,獲取內容,一行行寫入另一個文件(b.log)中。 cat a.log|wc -l sed -n '1 p' a.log fileputcontents('b.log’, $content, FILE_APPEND);
【代碼實現】:
1 //02.讀取1G的文件內容 2 public function testGetLarge() 3 {/*{{{*/ 4 #01. 方法1 直接cat後重定向 5 #if('useCat' == 'useCat') 6 if(0 && 'useCat' == 'useCat') 7 { 8 `cat a.log>>b.log`; 9 } 10 11 #02. 使用flie_put_contents ,一行一行讀取並追加寫入 12 if('useFilePutContents' == 'useFilePutContents') 13 {/*{{{*/ 14 $lineNum = `cat a.log|wc -l`; 15 for($i=1; $i<= $lineNum; $i++) 16 { 17 $content = `sed -n '$i p' a.log`; 18 //文件追加 19 file_put_contents('b.log', $content, FILE_APPEND); 20 } 21 22 }/*}}}*/
【其他解決方案】:http://www.jb51.net/article/40847.htm