PHP中可以通过fopen()打开一个文件,第二个参数设置为"r"表示已只读方式打开,函数返回一个文件句柄,其它函数就可以通过这个文件句柄对文件进行不同方式的读取
/**
* PHP中以只读方式打开文件
*
* @param
* @arrange 512-笔记网: jb51.cc
**/
$file = fopen("/tmp/file.txt","r");
print("Type of file handle: " . gettype($file) . "\n");
print("The first line from the file handle: " . fgets($file));
fclose($file);
/*** 来自编程之家 jb51.cc(jb51.cc) ***/
文件读取完成后,需要使用fclose()函数关闭文件句柄,以释放资源 原文链接:https://www.f2er.com/php/528384.html