gpt4 book ai didi

PHP目录权限检查

转载 作者:可可西里 更新时间:2023-11-01 13:40:18 24 4
gpt4 key购买 nike

我有一个 PHP 脚本需要检查目录的权限以确保它是可写的。到目前为止我所拥有的是:

$perms = substr(sprintf('%o', fileperms($folder)), -4);
if ($perms == "0777" || is_writable('temp'.DS))
{
//code here
}

这是足够的检查吗?

最佳答案

不需要手动检查权限,使用use is_writable就够了和 is_dir :

if (is_dir($myDir) && is_writable($myDir)){
//do stuff
}

关于PHP目录权限检查,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12285045/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com