怎么读取text文件,显示原样格式
程序员文章站
2024-01-18 20:50:52
...
如何读取text文件,显示原样格式?
如何读取text文件,显示原样格式?
原样格式: namelist.txt
php 显示格式t:
页面代码:
$file_handle = fopen("d:/data/namelist.txt", "r");
while (!feof($file_handle)) {
$line_of_text = fgets($file_handle);
print $line_of_text . "
";
}
fclose($file_handle);
?>
------解决方案--------------------
如何读取text文件,显示原样格式?
原样格式: namelist.txt
php 显示格式t:
页面代码:
$file_handle = fopen("d:/data/namelist.txt", "r");
while (!feof($file_handle)) {
$line_of_text = fgets($file_handle);
print $line_of_text . "
";
}
fclose($file_handle);
?>
------解决方案--------------------
$file_handle = fopen("d:/data/namelist.txt", "r");
echo '';';
while (!feof($file_handle)) {
$line_of_text = fgets($file_handle);
print $line_of_text . "
";
}
echo '
fclose($file_handle);
相关文章
相关视频