How to add content to txt file in php

墨辰丷
Release: 2023-03-26 15:04:01
Original
4909 people have browsed it

This article mainly introduces the method of appending content to txt files in PHP, involving related operating techniques of adding content to PHP overlay to Txt files, appending content and reading Txt files line by line. Friends in need can refer to the following

The details are as follows:

Overwrite the content of the txt file:

$filename="aa/a.txt";
$handle=fopen($filename,"w");
$str=fwrite($handle,"test");
fclose($handle);
Copy after login

Effect:

testtesttesttesttesttesttest
Copy after login

Append content to txt:

$filename="aa/a.txt";
$handle=fopen($filename,"a+");
$str=fwrite($handle,"test\n");
fclose($handle);
Copy after login

Effect:

test
test
test
test
test
test
test
Copy after login

##Read txt line by line:

$lines=file("db.txt");
foreach ($lines as $value) {
$line=explode(",",$value);
echo "no1:$line[0]--no2:$line[1]---time:$line[2]-<br>";
}
Copy after login

Related recommendations:

PHP programming method to append content to a txt file

PHP uses the built-in function file_put_contents to write files and Append contentmethod_PHP

PHP uses the built-in function file_put_contentsWrite files and Append contentmethods_php skills

The above is the detailed content of How to add content to txt file in php. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!