Heim >Backend-Entwicklung >PHP-Tutorial >读取文本文件并显示在网页_PHP教程

读取文本文件并显示在网页_PHP教程

WBOY
WBOYOriginal
2016-07-13 10:58:022310Durchsuche

读取文本文件并显示在网页 本文章来讲二种读取文本文件并显示在网页的php实例了,方法很简单,用fopen,加explode,for就实现了。

读取文本文件并显示在网页
本文章来讲二种读取文本文件并显示在网页的php教程实例了,方法很简单,用fopen,加explode,for就实现了。
*/

$file = "./text.txt";
$text = fread(fopen($file,"r"),filesize($file));
$line = explode("r",$text);
echo "";
    for($i = 0; $i  $txt = explode("t",$line[$i]);
 echo "";
    }
echo "
".$txt[0]." ".$txt[1]." ".$txt[2]." ".$txt[3]."
";

//方法二

$content = file_get_contents('test.txt');

$arr = explode("n", $content);
echo "

";

foreach ($arr as $v) {
$tmp = explode("    ", $v);
echo "

";
echo "";
echo "";
echo "";
echo "";
echo "";
unset($tmp);
}

echo "

" . $tmp[0] . "" . $tmp[1] . "" . $tmp[2] . "" . $tmp[3] . "
";

//其实不有一个方法来实现上的实例,file函数哦,这个我也不说多了。查查就知道了,它读出内容直接保存到数据,就不用我们使用explode函数了。
/*
文本文本格式如下

读取一个文本文件内容如下
1       aaaa    bbba    ccca
2       aaaa    bbbb    cccb
3       aaaa    bbbc    cccc
3       aaaa    bbbc    cccc

 

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/632048.htmlTechArticle读取文本文件并显示在网页本文章来讲二种读取文本文件并显示在网页的php实例了,方法很简单,用fopen,加explode,for就实现了。 读取文本文...
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn