PHP 使用PHP递归chmod

Posted

tags:

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

<?php

function chmod_R($path, $filemode) {

    $dh = opendir($path);
    while ($file = readdir($dh)) {
        if($file != '.' && $file != '..') {
            $fullpath = $path.'/'.$file;
			echo 'chmod ' .$filemode.' '.$fullpath. "<br />";
			chmod($fullpath, $filemode);
			echo '<br />';
            if(is_dir($fullpath)) {
			  
               chmod_R($fullpath, $filemode);
			  
            } 
        }
    }
 
    closedir($dh);    
}

chmod_R('.', 0755);
?>

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

PHP PHP中的递归chmod

用PHP递归chmod

PHP中的递归chmod

PHP中的递归chmod

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

PHP chmod():不允许操作,涉及安全模式弃用?