久艹网,亚洲一日韩欧美中文字幕2019,国产欧美日韩精品专区黑人,一区二区三区久久99

中山php|最優(yōu)網(wǎng)絡(luò)中山做網(wǎng)站 中山php建站

最優(yōu)良人

Posts Tagged With: fread

php file_get_contents函數(shù)分段讀取大記事本或其它文本文件

2011/12/22 at 11:39 » Comments (263)

當我們遇到文本文件體積很大時,比如超過幾十M甚至幾百M幾G的大文件,用記事本或者其它編輯器打開往往不能成功,因為他們都需要把文件內(nèi)容全部放到內(nèi)存里面,這時就會發(fā)生內(nèi)存溢出而打開錯誤,遇到這種情況我們可以使用PHP的文件讀取函數(shù)file_get_contents()進行分段讀取。 函數(shù)說明 string file_get_contents ( string $filename [, bool $use_include_path [, resource $context [, int $offset [, int $maxlen ]]]] ) 和 file() 一樣,只除了 file_get_contents() 把文件讀入一個字符串。將在參數(shù) offset 所指定的位置開始讀取長度為 maxlen 的內(nèi)容。如果失敗,file_get_contents() 將返回 ...more »