php逐行读取文件内容
来源:原创
时间:2017-04-23
作者:脚本小站
分类:PHP
$file = fopen("Minot.txt", "r") ; while(!feof($file)) { echo fgets($file); } fclose($file);
$file = fopen("Minot.txt", "r") ; while(!feof($file)) { echo fgets($file); } fclose($file);