打开本地或者远程文件_PHP
时间:2021-07-01 10:21:17
帮助过:3人阅读
打开本地或者远程文件
print("通过http协议打开文件
\n");
// 通过 http 协议打开文件
if(!($myFile = fopen("http://xlj/php/jiang/data.txt", "r")))
{
print("文件不能打开");
exit;
}
while(!feof($myFile)) //循环
{
// 按行读取文件中的内容
$myLine = fgetss($myFile, 255);
print("$myLine
\n");
}
// 关闭文件的句柄
fclose($myFile);
?>