当前位置: 首页 > 实例教程 > PHP 基础实例 > PHP 数组 > PHP 文件内容载入数组
关键字
使用file()函数可以将指定路径的文件载入数组,并利用count()函数将元素个数输出: <?php $cont = file("/example/files/a/test2.txt"); $lines = count($cont); echo "文件一共有: $lines 行"; echo "<br />"; //全部输出 for($i=0;$i<$lines;$i++){ echo $cont[$i]."<br />"; } ?>
登陆 | 还没注册?