php逐行讀取txt檔案寫入陣列的方法

2022-10-06 10:24:11 字數 537 閱讀 8415

假設有user.程式設計客棧txt檔案如下:

user01

user02

user03

user04

user05

user06

user07

user08

user09

user10

user11

user12

逐行讀取user.txt並寫ivwwtl入陣列的方法如下:

$file = fopen("username.txt", "r");

$user=array();

$i=0;

//輸出文字中所有的行,直到檔案結束為止。

while(! feof($file))

fclose($file);

$user=array_filter($user);

print_r($user);

問題搞程式設計客棧定!

本文標題: php逐行讀取txt檔案寫入陣列的方法 原創

本文位址: /wangluo/php/127467.html

php逐行讀取txt檔案寫入陣列的方法

php逐行讀取txt檔案寫入陣列的方法 測試資料 test01 test02 test03 test04 test05 test06 test07 test08 test09 test10 test11 test12方法01 fileurl e web log.txt isss file exist...

PHP逐行讀取txt檔案的方法例項

header content type text html charset utf 8 function readtxt fclose handle foreach readtxt as key value file path 0910.txt if file exists file path 最原...

PHP寫入txt檔案

myfiletoread fopen txt readme.txt r or die unable to open file myfileread fread myfiletoread,20 myfiletowrite fopen txt writeme.txt a or die unable to...