如何在 PHP 中确定我是否具有对文件夹的写权限

发布于 2024-09-30 23:56:22 字数 92 浏览 5 评论 0原文

我正在编写一个 WordPress 插件,需要操作插件目录中的文件,但我不知道如何以图表方式确定 PHP 是否对文件夹具有写入权限。我将如何以相对简单的方式实现这一目标?

I'm writing a WordPress plugin that requires manipulating files in the plugin directory, and I can't figure out how to diagrammatically determine whether PHP has write permissions to a folder. How would I go about achieving this in a relatively simple manner?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

巷雨优美回忆 2024-10-07 23:56:22
$b = is_writable( "/file/or/folder/to/test" ); //boolean value

http://php.net/manual/en/function.is-writable.php

适用于文件和文件夹:“如果文件名存在且可写,则返回 TRUE。文件名参数可以是目录名,允许您检查目录是否可写。”

$b = is_writable( "/file/or/folder/to/test" ); //boolean value

http://php.net/manual/en/function.is-writable.php

Works on files as well as on folders: "Returns TRUE if the filename exists and is writable. The filename argument may be a directory name allowing you to check if a directory is writable."

画骨成沙 2024-10-07 23:56:22

fileperms 获取给定文件的权限。

fileperms gets permissions for the given file.

情话墙 2024-10-07 23:56:22

试试这个函数: is_writable()

Try this function: is_writable()

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文