这篇文章主要介绍了php逐行读取txt文件写入数组的方法,涉及php文本文件及数组的相关操作技巧,需要的朋友可以参考下
本文实例讲述了php逐行读取txt文件写入数组的方法。分享给大家供大家参考。具体如下:
假设有user.txt文件如下:
user01 user02 user03 user04 user05 user06 user07 user08 user09 user10 user11 user12
逐行读取user.txt并写入数组的方法如下:
$file = fopen("username.txt", "r"); $user=array(); $i=0; //输出文本中所有的行,直到文件结束为止。 while(! feof($file)) { $user[$i]= fgets($file);//fgets()函数从文件指针中读取一行 $i++; } fclose($file); $user=array_filter($user); print_r($user);
问题搞定!
希望本文所述对大家的php程序设计有所帮助。
,
Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Dreamweaver CS6
Visual web development tools

SublimeText3 Chinese version
Chinese version, very easy to use

Notepad++7.3.1
Easy-to-use and free code editor

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.
