Home > Backend Development > PHP Problem > How to read file content in php script

How to read file content in php script

爱喝马黛茶的安东尼
Release: 2023-02-24 20:52:01
Original
2945 people have browsed it

How to read file content in php script

Create a file.php script file.

How to read file content in php script

Then define the file path we want to access.

How to read file content in php script

Related recommendations: "php tutorial"

Then we check whether the file exists.

How to read file content in php script

Use the feof file to check whether the end of the file has been reached, then use the fread loop to read the file content and output the read content.

How to read file content in php script

#After reading is completed, remember to use the fclose method to close the file handle.

How to read file content in php script

The script is finished, let’s run it. Then compare the output content with the content of the file we want to read.

How to read file content in php script

How to read file content in php script

OK, you’re done! The following is the source code:

<?php
// 定义并初始化要访问的文件路径
$filename = &#39;./my.txt&#39;;
// 检查文件是否存在,不存在直接退出
if (!file_exists($filename)) {
echo &#39;file does not exists&#39;;
exit;
}
// 以只读方式打开该文件
$handle = fopen($filename, &#39;r&#39;);
// 使用feof方法判断是否到文件末尾
// 使用fread方法进行内容读入
while (!feof($handle)) {
$line = fread($handle, 1024);
echo $line;
}
// 操作完成后将文件关闭
fclose($handle);
Copy after login

The above is the detailed content of How to read file content in php script. 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
Latest Issues
php data acquisition?
From 1970-01-01 08:00:00
0
0
0
PHP extension intl
From 1970-01-01 08:00:00
0
0
0
How to learn php well
From 1970-01-01 08:00:00
0
0
0
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template