PHP中可以通过file_get_contents()函数将文件一次性读取到字符串中
/**
* PHP 读取文件内容到字符串代码
*
* @param
* @arrange 512-笔记网: www.512Pic.com
**/
$file = file_get_contents("/tmp/file.txt");
print("Size of the file: ".strlen($file)."\n");
/*** 来自编程之家 jb51.cc(jb51.cc) ***/
原文链接:https://www.f2er.com/php/528381.html