PHP 文件夹递归执行chmod命令的功能实例

内容摘要
这篇文章主要为大家详细介绍了PHP 文件夹递归执行chmod命令的功能实例,具有一定的参考价值,可以用来参考一下。

PHP递归对文件夹递归执行chmod命令,对此感兴趣的朋友,看看idc笔
文章正文

这篇文章主要为大家详细介绍了PHP 文件夹递归执行chmod命令的功能实例,具有一定的参考价值,可以用来参考一下。

PHP递归对文件夹递归执行chmod命令,对此感兴趣的朋友,看看idc笔记做的技术笔记。经测试代码如下:

/**
 * 文件夹递归执行chmod命令
 *
 * @param 
 * @arrange (www.idcnote.com)
 **/
   function recursiveChmod($path, $filePerm=0644, $dirPerm=0755)
   {
      // Check if the path exists
      if(!file_exists($path))
      {
         return(FALSE);
      }
      // See whether this is a file
      if(is_file($path))
      {
         // Chmod the file with our given filepermissions
         chmod($path, $filePerm);
      // If this is a directory...
      } elseif(is_dir($path)) {
         // Then get an array of the contents
         $foldersAndFiles = scandir($path);
         // Remove "." and ".." from the list
         $entries = array_slice($foldersAndFiles, 2);
         // Parse every result...
         foreach($entries as $entry)
         {
            // And call this function again recursively, with the same permissions
            recursiveChmod($path."/".$entry, $filePerm, $dirPerm);
         }
         // When we are done with the contents of the directory, we chmod the directory itself
         chmod($path, $dirPerm);
      }
      // Everything seemed to work out well, return TRUE
      return(TRUE);
   }
 


/***    来自php教程(www.idcnote.com)   ***/

注:关于PHP 文件夹递归执行chmod命令的功能实例的内容就先介绍到这里,更多相关文章的可以留意

代码注释

作者:喵哥笔记

IDC笔记

学的不仅是技术,更是梦想!