<?php print("<H3>通过http协议打开文件</H3>\n"); // 通过 http 协议打开文件 if (!($myFile = fopen("data.txt", "r"))) { print("文件不能打开"); exit; } else { // 读取文件中的内容 echo fread($myFile, filesize("data.txt")); } // 关闭文件的句柄 fclose($myFile); ?>
data.txt如下:
2022-10-08 22:42:45
<?php print("<H3>通过http协议打开文件</H3>\n"); // 通过 http 协议打开文件 if (!($myFile = fopen("data.txt", "r"))) { print("文件不能打开"); exit; } else { // 读取文件中的内容 echo fread($myFile, filesize("data.txt")); } // 关闭文件的句柄 fclose($myFile); ?>
data.txt如下: