VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > PHP >
  • php文件操作

这里讲的文件操作主要是讲php获取文件的主要信息,判断文件的性质,获取文件名和目录名等哦,下面看三个实例:

  1. */ 
  2. //获取文件的主要信息。 
  3. $file = "data.txt"
  4. if(is_dir($file)) 
  5.     echo "文件 $file 是个目录"
  6.     echo "<br/>"
  7. else 
  8.     echo "文件 $file 不是目录"
  9.     echo "<br/>"
  10. if(is_file($file)) 
  11.     echo "文件 $file 是一个普通文件"
  12.     echo "<br/>"
  13. if(is_readable($file)) 
  14.     echo "文件 $file 是可读的"
  15.     echo "<br/>"
  16. else 
  17.     echo "文件 $file 是不可读的"
  18.     echo "<br/>"
  19. if(is_writeable($file)) 
  20.    echo "文件 $file 是可写的"
  21.    echo "<br/>"
  22. else 
  23.    echo "文件 $file 是不可写的"
  24.    echo "<br/>"
  25. //判断文件的性质。 
  26. $path = "/home/prog/php/sayhello.php"
  27. $file_name = basename($path); 
  28. $dir_name = dirname($path); 
  29. echo "完整路径:".$path
  30. echo "<hr>"
  31. echo "<br/>"
  32. echo "其中目录名为:".$dir_name
  33. echo "<br/>"
  34. echo "其中文件名为:".$file_name
  35. echo "<br/>"
  36. //获取文件名和目录名。 
  37. $file = "data.txt"
  38. $dir = "info/newdata"
  39. if(file_exists($file)) 
  40.     echo "当前目录中,文件".$file."存在"
  41.     echo "<br/>"
  42. else 
  43.      echo "当前目录中,文件".$file."不存在"
  44.      echo "<br/>"
  45. echo "<br/>"
  46. echo "<hr>"
  47. echo "<br/>"
  48. if(file_exists($dir)) 
  49.     echo "当前目录下,目录".$dir."存在"
  50.     echo "<br/>"
  51. else 
  52.      echo "当前目录下,目录".$dir."不存在"
  53.      echo "<br/>"
 
出处:http://www.phpfensi.com/php/20131211/937.html

相关教程