使用 PHP 授予文件夹权限
我需要向访问我的 php 站点的所有本地计算机(如果没有)的临时文件夹授予写入权限。可以使用PHP吗?
I need to grant write permission to temporary folder of all local machine (if it does not have)which access my php site. Is it possible using PHP?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不,你不能,因为 PHP 只能在服务器端运行!
PHP 用于创建 HTML 输出,无法访问客户端计算机上的文件。
chmod('path/to/my/folder',777); 只会更改服务器上的文件权限 - 永远不会更改客户端上的文件权限!
No, you can't because PHP works server-side only!
PHP is used to create HTML output and cannot access files on client-side machines.
chmod('path/to/my/folder',777); will only change file permissions on the server machine - never on a client!
您可以使用 php 函数 chmod。您当然要小心,但您可以说
或者您想要的任何写入权限。
http://php.net/manual/en/function.chmod.php
You can use the php function chmod. You want to be careful of course but you could say
Or whatever write permissions you want.
http://php.net/manual/en/function.chmod.php