PHP函数修改(复制文件夹-设置其权限)
我正在使用这个函数:
function rcopy($src, $dst) {
if (file_exists($dst)) rrmdir($dst);
if (is_dir($src)) {
mkdir($dst);
$files = scandir($src);
foreach ($files as $file)
if ($file != "." && $file != "..") rcopy("$src/$file", "$dst/$file");
}
else if (file_exists($src)) copy($src, $dst);
}
rcopy("$source_folder", "$target_folder");
它工作得很好,但我需要一种方法来设置 $target_folder 的权限。
另一个人对如何做到这一点有任何想法吗?
I am using this function:
function rcopy($src, $dst) {
if (file_exists($dst)) rrmdir($dst);
if (is_dir($src)) {
mkdir($dst);
$files = scandir($src);
foreach ($files as $file)
if ($file != "." && $file != "..") rcopy("$src/$file", "$dst/$file");
}
else if (file_exists($src)) copy($src, $dst);
}
rcopy("$source_folder", "$target_folder");
It works great but I need a way to set the permissions to the $target_folder.
Another got any ideas on how to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对 target_folder 使用
chmod()
函数。Use
chmod()
function to the target_folder.