熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> PHP編程 >> 正文

PHP中將文件載入數組

2022-06-13   來源: PHP編程 

  使用file()函數將文件載入數組文件中的每一行作為數組的一個元素

實例
array_filephp:

view sourceprint? <?php     $DOCUMENT_ROOT $_SERVER[DOCUMENT_ROOT]; ?> <html>     <head>         <title>Test Array File</title>     </head>     <body>         <?php             $peoples = file($DOCUMENT_ROOT/test//peopletxt);             $count count($peoples);             if ($count == ) {                 echo NO peoples pending Please try again later;             }             for ($i $i $count$i++) {                 echo $peoples[$i]<br />;             }         ?>     </body> </html>
From:http://tw.wingwit.com/Article/program/PHP/201311/21133.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.