当前位置:首页 > PHP教程 > php函数 > 列表

php读取本地文件操作函数

发布:smiling 来源: PHP粉丝网  添加日期:2014-09-13 16:27:52 浏览: 评论:0 

在php中读取本地文件我们最常用的就是fopen与fread函数配置使用即可了,还有一些其它的像php file_get_contents可以读本地文件也可以读远程文件了,下面我们来一一介绍一下.

fopen() 函数,直接打开文件,例代码如下:

  1. <?php 
  2. $file = "111.txt"
  3. $fp = fopen($file,"r"); 
  4. if ($fp){ 
  5.  while(!feof($fp)){ 
  6.   //第二个参数为读取的长度 
  7.   $data = fread($fp, 1000); 
  8.  } 
  9.  fclose($fp); 
  10. echo $data
  11. ?> 

file_get_contents() 函数把整个文件读入一个字符串中,例子代码如下:

  1. <?php 
  2. echo file_get_contents("test.txt"); 
  3. ?> 
  4. //输出: 
  5. This is a test file with test text. 

php读取本地文件夹文件,代码如下:

  1. <?php 
  2. $dir = opendir('/movie'); 
  3. while(($file = readdir($dir))!=false){ 
  4.   if ($file!="." && $file!="..") {  
  5.     $ns = explode('.'$file); 
  6.     echo $ns[0];//开源代码phpfensi.com 
  7.   }  
  8. closedir($dir); 
  9. ?>

Tags: php读取文件 php文件操作函数

分享到:

相关文章