PHP读取文件内容在实际开发当中,还是比较常见的,所以今天我就给大家分享几种读取的方法,大家可以选择一种最适合的就行了。
第一种,使用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","
",$str);
fclose($fp);
}
?>
第二种,用file_get_contents函数:
",$str);
echo $str;
}
?>
第三种,用fopen函数:
while(!feof($fp)){//循环读取,直至读取完整个文件
$str .= fread($fp,$buffer);
}
$str = str_replace("\r\n","
",$str);
echo $str;
fclose($fp);
}
?>
第四种方法,使用file函数:
";
fclose($file_arr);
}
}
?>
第五种,还是使用fopen函数:
",$str);
echo $str;
fclose($fp);
}
?>
好了,以上就是本篇文字为大家介绍的五种方法,当然,开启资源后,记得使用fclose($fp);关闭一下,不然的话,会消耗服务器的资源。