Dreamss
2015-12-13 23:16
求解 如果我要第二行 第三行呢 还有如果要从第一行一直到最后一行全部显示出来 又该如何
不是很明白你的意思,要是输出,你这个就是输出所有的啊,
<?php
$file_handle = fopen("id.txt","r");
if ($file_handle){
while (!feof($file_handle)) {
$line = fgets($file_handle); //读取一行文本
echo $line,'<br/>'; //输出一行文本
}}
?>
这样试试
好吧,.
<?php
$file_handle = fopen("id.txt","r");
if ($file_handle){
while (!feof($file_handle)) {
$line = fgets($file_handle); //读取一行文本
echo $line; //输出一行文本
}}
?>
由于本地环境写的 没考虑到循环
PHP入门篇
455957 学习 · 6306 问题
相似问题