Home >Backend Development >PHP Tutorial >php的file_get_content不会销毁读取到内存中的文件内容吗?该如何解决
php的file_get_content不会销毁读取到内存中的文件内容吗?
前阵子给自己写的小程序:遍历指定文件夹内的文件,并搜索指定内容
<!--Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->// 这种用法很占用内存,几乎每次都出错$content = file_get_contents($file);// 成功$content = '';$fp = fopen($file, 'r');$content .= fread($fp, 10240);// 即使没有fclose(),在函数内调用仍然会顺利运行完毕