

<?php
// 第一种读取方式
header("content-type:text/html;charset=utf-8");
// 文件路径
$fileA = "A.txt";
// 判断是否有这个文件
if (file_exists($fileA))
{
if (FALSE!=($fp = fopen($fileA, "a+")))
{
//读取文件
$conn = fread($fp, filesize($fileA));
// 替换字符串
$conn = str_replace("rn", "<br/>", $conn);
echo $conn;
}
else
{
echo "文件打不开";
}
}
else
{
echo "没有这个文件";
}
fclose($fp);
?>
View Code
<?php
header("content-type:text/html;charset=utf-8");
//文件路径
$file_path="A.txt";
$conn=file_get_contents($file_path);
$conn=str_replace("rn","<br/>",file_get_contents($file_path));
echo $conn;
?>


<?php
header ( "content-type:text/html;charset=utf-8" );
// 文件路径
$file_path = "A.txt";
// 判断文件是否存在
if (file_exists ( $file_path ))
{
// 判断文件是否能打开
if (FALSE != ($fp = fopen ( $file_path, "a+" )))
{
$buffer = 1024;
// 边读边判断是否到了文件末尾
$str = "";
while ( ! feof ( $fp ) )
{
$str .= fread ( $fp, $buffer );
}
}
else
{
echo "文件不能打开";
}
}
else
{
echo "没有这个文件";
}
// 替换字符
$str = str_replace ( "rn", "<br>", $str );
echo $str;
fclose ( $fp );
?>
View Code