打开本地或者远程文件_PHP
程序员文章站
2022-05-13 20:17:26
...
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);
?>