$content = file_get_contents('./test.txt', null, null, 100, 500); 代码的后面的null,null,100,500分别代表什么?
什么叫规定文件句柄的环境?默认为null?
第一个null:As of PHP 5 the FILE_USE_INCLUDE_PATH can be used to trigger include path search.
第二个null:规定文件句柄的环境
100:文件中开始读取的位置
500:读取的字节数