您好我也有高達30MB大小的文本文件,我想使用PHP腳本循環如何使用php腳本讀取30MB文本文件?
$lines = file('data.txt');
//loop through each line
foreach ($lines as $line) { \\some function }
有什麼辦法來讀取這個文件?我想打開它閱讀PHP不允許我打開一個30MB的文件。通過線使用
$file = fopen("data.txt", "r") or exit("Unable to open file!");
while(!feof($file)) {
// do what you need to do with it - just echoing it out for this example
echo fgets($file). "<br />";
}
fclose($file);
那你想用的文件呢? – 2011-01-31 15:52:01
我想一行一行閱讀,然後用文本文件中的信息處理數據,然後插入MySQl數據庫 – leon 2011-01-31 15:56:02