在php语言中读取文件的方法很多,今天我们就来讲三种php读取文本文件内容实例吧,主要是用到fopen,file,file_get_contents函数来实现.
-
-
- $path ='a.txt';
- $fp=fopen($file,"r");
- while(!(feof($fp)))
- {
- $text=fgets($fp);
- echo $text;
- }
-
-
-
-
- if( file_exists( $path ) )
- {
- $body = file_get_contents($path);
- echo $body ;
- }
- else
- {
- echo "文件不存在 $path";
- }
-
-
-
- $cbody = file($path);
- print_r($cbody);
|