900字范文,内容丰富有趣,生活中的好帮手!
900字范文 > php遍历文本文档txt文件中的链接内容为数组

php遍历文本文档txt文件中的链接内容为数组

时间:2024-04-16 04:16:55

相关推荐

php遍历文本文档txt文件中的链接内容为数组

1 <?php 2 3 $file = fopen("1.txt", "r"); 4 $user=array(); 5 $i=0; 6 //输出文本中所有的行,直到文件结束为止。 7 while(! feof($file)) 8 { 9 $user[$i]= fgets($file);//fgets()函数从文件指针中读取一行10 $i++;11 }12 fclose($file);13 $user=array_filter($user);14 15 echo "<pre>";16 print_r($user);17 echo "</pre>";18 19 //echo "</br>";20 //echo sizeof($user);21 22 //echo "</br>";23 //echo "</br>";24 //echo $user[5];25 26 ?>

php遍历文本文档txt文件中的链接内容为数组

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。