php教程

PHP读取TXT文本内容方法大全

我的站长站 2025-02-25 人阅读

fread函数方法

<?php
$file_path = "test.txt";
if(file_exists($file_path)){
$fp = fopen($file_path,"r");
$str = fread($fp,filesize($file_path));//指定读取大小,这里把整个文件内容读取出来
echo $str = str_replace("\r\n","<br />",$str);
fclose($fp);
}
?>

file_get_contents函数方法

<?php
$file_path = "test.txt";
if(file_exists($file_path)){
$str = file_get_contents($file_path);//将整个文件内容读入到一个字符串中
$str = str_replace("\r\n","<br />",$str);
echo $str;
}
?>

fopen函数方法

<?php
$file_path = "test.txt";
if(file_exists($file_path)){
$fp = fopen($file_path,"r");
$str = "";
$buffer = 1024;//每次读取 1024 字节
while(!feof($fp)){//循环读取,直至读取完整个文件
$str .= fread($fp,$buffer);
}
$str = str_replace("\r\n","<br />",$str);
echo $str;
fclose($fp);
}
?>

 file函数方法

<?php
$file_path = "test.txt";
if(file_exists($file_path)){
$file_arr = file($file_path);
for($i=0;$i<count($file_arr);$i++){//逐行读取文件内容
echo $file_arr[$i]."<br />";
fclose($file_arr);
}
}
?>

fopen函数方法二

<?php
$file_path = "test.txt";
if(file_exists($file_path)){
$fp = fopen($file_path,"r");
$str ="";
while(!feof($fp)){
$str .= fgets($fp);//逐行读取。如果fgets不写length参数,默认是读取1k。
}
$str = str_replace("\r\n","<br />",$str);
echo $str;
fclose($fp);
}
?>

当然,开启资源后,记得使用fclose($fp);关闭一下,不然的话,会消耗服务器的资源。


相关推荐
  • PHP读取TXT
  • PHP读取TXT文本内容方法大全

    fread函数方法<?php$file_path = "test.txt";if(file_exists($file_path)){$fp = fopen($file_path,"r");$str = fread($fp,filesize($file_path));//指定读取大小,这里把整个文件内容读取出来echo $str = str_replace("\r\n","<br />",$str);fcl...

    php教程 14 4周前
  • file_get_contents读取TXT指定数据方法

    file_get_contents()读取整个文件方法如果文件不是特别大,你可以简单地使用file_get_contents()读取整个文件内容,然后使用字符串函数(如substr(), strpos(), strstr(), explode()等)来提取或处理特定数据。$content = file_get_contents(&#39;path/to/y...

    php教程 13 1个月前
  • PHP两个TXT文件对比,去除重复内容

    示例代码<?php// 读取两个文件的内容$file1Content = file(&#39;file1.txt&#39;, FILE_IGNORE_NEW_LINES); // 忽略行尾换行符,返回数组$file2Content = file(&#39;file2.txt&#39;, FILE_IGNORE_NEW_LINES); // 忽略行尾换行符,返回数组// 将第二个文...

    php教程 16 1个月前
最新更新