PHP:如何以 root 身份运行 readdir()
我正在尝试为我的文件服务器制作一个轻量级前端。我使用PHP显示所有文件,但是readdir()是以http用户身份执行的,因为apache是以该用户身份启动的。
这是一个问题,因为我想查看我的所有文件。因此, readdir() 必须以 root 身份运行,但我不知道该怎么做。你们能帮我吗?
I am trying to make a lightweight frontend for my fileserver. I use PHP to display all the files, but readdir() is executed as the http user, because apache is started as this user.
This is a problem, because I want to view all my files. Therefore, readdir() has to be run as root, but I don't know how to do that. Can you guys help me?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是不可能的。您无法以其他用户身份运行单个功能,除非您最初是该用户,然后暂时切换回该用户。
This cannot be done. You can't run a single function as another user unless you started out as that user and then are shifting back to them temporarily.