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/ )
function rChmod($path, $filePerm=0664, $dirPerm=0775) { return(false); { foreach($entries as $entry) rChmod($path.DIRECTORY_SEPARATOR.$entry, $filePerm, $dirPerm); } return(true); }
以上是关于PHP中的递归chmod的主要内容,如果未能解决你的问题,请参考以下文章