PHP中的递归chmod

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP中的递归chmod相关的知识,希望对你有一定的参考价值。

Heavily based on "Recursive chmod in php" by Tenzer ( 03/10/08 http://snipplr.com/view/5350/ )
  1. function rChmod($path, $filePerm=0664, $dirPerm=0775)
  2. {
  3. if(!file_exists($path))
  4. return(false);
  5.  
  6. if(is_file($path))
  7. chmod($path, $filePerm);
  8. elseif(is_dir($path))
  9. {
  10. chmod($path, $dirPerm);
  11.  
  12. $foldersAndFiles = scandir($path);
  13. $entries = array_slice($foldersAndFiles, 2);
  14. foreach($entries as $entry)
  15. rChmod($path.DIRECTORY_SEPARATOR.$entry, $filePerm, $dirPerm);
  16. }
  17.  
  18. return(true);
  19. }

以上是关于PHP中的递归chmod的主要内容,如果未能解决你的问题,请参考以下文章

PHP中的递归chmod

PHP中的递归chmod

PHP 使用PHP递归chmod

用PHP递归chmod

递归 chmod/chown/chgrp 目录中的所有文件和文件夹

PHP代码-psysh调试代码片段工具