欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

PHP对文件夹递归执行chmod命令的方法

程序员文章站 2022-04-18 11:53:57
本文实例讲述了php对文件夹递归执行chmod命令的方法。分享给大家供大家参考。具体分析如下: 这里对文件夹和文件递归执行chmod命令来改变执行权限 <...

本文实例讲述了php对文件夹递归执行chmod命令的方法。分享给大家供大家参考。具体分析如下:

这里对文件夹和文件递归执行chmod命令来改变执行权限

<?php
  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程序设计有所帮助。