如何使用php读取txt文件,并且分行显示
PHP读取一个固定的txt文件,使得PHP和txt文件一样分行显示,获取不到txt文件的时候,可以自定义提示一段话,...
PHP读取一个固定的txt文件,使得 PHP 和 txt文件一样分行显示 , 获取不到 txt文件的时候 ,可以自定义提示一段话,
展开
2013-07-15
展开全部
<?php
$fp = fopen('welcome.txt', 'r');
if (!$fp) {
echo 'Could not open file somefile.txt';
}
while ($char = fgetc($fp)) {
echo "$char";
}
?>
$fp = fopen('welcome.txt', 'r');
if (!$fp) {
echo 'Could not open file somefile.txt';
}
while ($char = fgetc($fp)) {
echo "$char";
}
?>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2013-07-15
展开全部
<?php
$file=fopen("welcome.txt","r") or exit("Unable to open file!");
while (!feof($file))
{
echo fgetc($file)."</br>";
}
fclose($file);
?>
$file=fopen("welcome.txt","r") or exit("Unable to open file!");
while (!feof($file))
{
echo fgetc($file)."</br>";
}
fclose($file);
?>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2013-07-15
展开全部
fgets读取一行,然后可以循环输出
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询