如何在 PHP 中确定我是否具有对文件夹的写权限
我正在编写一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
http://php.net/manual/en/function.is-writable.php
适用于文件和文件夹:“如果文件名存在且可写,则返回 TRUE。文件名参数可以是目录名,允许您检查目录是否可写。”
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."
fileperms 获取给定文件的权限。
fileperms gets permissions for the given file.
试试这个函数: is_writable()
Try this function: is_writable()