在 PHP 中上传文件并授予该文件的权限
我需要开发一个网络应用程序,例如 www.Sharefile.com。我希望用户上传该文件,然后授予该文件仅供特定用户访问的权限。
我不知道如何使用 PHP 授予服务器文件(上传 pdf、word 等文件)的权限。
I need develop a web app like www.Sharefile.com. I want users to upload and then give permissions to that file for access by particular users only.
I don't know how to give permissions for server files (upload file like pdf,word) using PHP.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你问一个一般性问题,所以你得到一个一般性答案:我假设你已经为这些用户设置了一些登录来上传他们的文件。使用相同的登录系统,您可以控制特定文件的权限。这不一定是在 php 本身中完成的。例如,用户和文件权限可以存储在数据库中。文件本身可能具有通常的权限。
You ask a general question, so you get a general answer: I assume you already have some login set up for these users to upload their files. Using this same login system, you can control permissions on specific files. This is not necessarily done in php itself. For example, user and file permissions may be stored in a DB. The files themselves will probably have usual permissions.