VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > PHP >
  • php检查文件是否可读和可写

is_readable() 函数判断指定文件名是否可读。

  1. <?php  
  2.     $file = "test.txt";  
  3.     if(is_readable($file)) {  
  4.         echo ("$file is readable");  
  5.     } else {  
  6.         echo ("$file is not readable");  
  7.     }  
  8. ?> 

is_writeable() 函数判断指定的文件是否可写。

该函数是 is_writable() 函数的别名。

  1. <?php  
  2.     $file = "test.txt";  
  3.     if(is_writeable($file)) { echo ("$file is writeable");  
  4.     } else { echo ("$file is not writeable");  
  5.     }  
  6.  
  7. ?> 
  8.  

出处:http://www.phpfensi.com/php/20131114/152.html


相关教程