打开本地或者远程文件_PHP
程序员文章站
2022-05-20 17:03:47
...
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);
?>
上一篇: 刚写的一个文件下传类。欢迎评点