How do I read from text file using PHP under Linux or UNIX?
PHP does supports the file reading and writing. You can open a file using the fopen() function. Once the file is open, you can use the fgets() function to read from the file.
For example, if you wish to open file called /tmp/file1.txt then following PHP code will help you to read file. fopen() will open fine in r (read) mode. Then while loop will open file using fgets() function till end of file:
php source code
<html> <head> <title>File read demo</title> </head> <body> <?php $file = "/tmp/file1.txt"; $f = fopen($file, "r"); while ( $line = fgets($f, 1000) ) { print $line; } ?> </body> </html>
See fopen() and fgets() for more information.
🐧 Get the latest tutorials on Linux, Open Source & DevOps via RSS feed or Weekly email newsletter.
🐧 15 comments so far... add one ↓
🐧 15 comments so far... add one ↓
Category | List of Unix and Linux commands |
---|---|
File Management | cat |
Firewall | Alpine Awall • CentOS 8 • OpenSUSE • RHEL 8 • Ubuntu 16.04 • Ubuntu 18.04 • Ubuntu 20.04 |
Network Utilities | dig • host • ip • nmap |
OpenVPN | CentOS 7 • CentOS 8 • Debian 10 • Debian 8/9 • Ubuntu 18.04 • Ubuntu 20.04 |
Package Manager | apk • apt |
Processes Management | bg • chroot • cron • disown • fg • jobs • killall • kill • pidof • pstree • pwdx • time |
Searching | grep • whereis • which |
User Information | groups • id • lastcomm • last • lid/libuser-lid • logname • members • users • whoami • who • w |
WireGuard VPN | Alpine • CentOS 8 • Debian 10 • Firewall • Ubuntu 20.04 |
Thanks for the provide the coding ..
I need a another one help ,( unknow size of the text file ) using for loop to retrieve the textf ile value…
Thanks a lot Vivek for providing necessary information and also would like to know that
Is it possible to execute perl script inside php?
very good code
$str = file_get_contents(“file.txt”);
Really simplest way to read a file.
if i read this file and print, than
-new line char, tabs, gets lost
is it possible to print text file as same as its in original format !
please suggest
This works for me:
Hope it helps.
Edited by admin: added pre tags.
Well, use the pre tags to display the variable with file contents with print. Obove example posted a bit weird.
Very very good cods & thanks for making this code
it prints only the last line from the text file..do we need to use any foreach loop?
hi, i want to ask a question that . it i have a test.txt file with this data .
—————-test.txt——————–
Student Table.
1- student 1
2- student 2
3- student 3
——————————————–
this file located in D:\test.txt …..
how can i read this file on web page and show out put like first line as title and other lines are same as it is.
plz help. sorry for bad english.
Thanx in advance
Hi,
thanks its very use full code for me
@sh I don’t knw why it does that from your side but to me this cript does exactly the real job : what I dont undestand is that 1000
: This is gud thanks
Thanks, it’s very helpfull…, :)
Thanks for the code. Can you please elaborate how can we handle a specific column or row of text in php?