PHP-CLI + 文件权限
当你在命令行中运行php脚本时,是以当前用户的读/写权限执行还是什么?
When you run a php script in the command line, does is execute with the read/write permissions of the current user or what?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
是的,它确实。
Yes, it does.
是的,它以当前用户的权限运行。 就像执行任何其他命令行程序一样。
Yes, it runs with the permissions of the current user. Just like executing any other command-line program.
是的,它将在默认设置中以当前用户身份运行。
如果您在 unix 系统上,您可以通过调整 php cli 二进制文件的 setuid 位来更改此设置。 当然,这样做是一个坏主意。
Yes, it will run as the current user in a default setup.
If you where on a unix system you could change this by adjusting the setuid bit of the php cli binary. Of course doing so would be a bad idea.