php读取文件内容 随机输出一行
//简单读取文件内容 <?php //获取网址参数 $set = $_REQUEST[‘set’]; $file_path = “$set.txt”; if(file_exists($file_path)){ $file_arr = file($file_path); for($i=0;$i<count($file_arr);$i++){//逐行读取文件内容 echo $file_ar
阅读更多 »
//简单读取文件内容 <?php //获取网址参数 $set = $_REQUEST[‘set’]; $file_path = “$set.txt”; if(file_exists($file_path)){ $file_arr = file($file_path); for($i=0;$i<count($file_arr);$i++){//逐行读取文件内容 echo $file_ar
阅读更多 »