用 PHP 编写的简单/快速的文件上传脚本是什么?
我正在制作一个网站,该网站赋予用户将文本文档上传到服务器的权限。然后,服务器应在上传文件时获取该文件并将其存储在 ftp 服务器中,并且 SQL 数据库应保存与该文件关联的数据。
I am making a website which gives the user the privilege of uploading a text document to the server. The server then should take the file and store it in the ftp server when it is uploaded and the SQL database should hold the data associated with the file.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我相信这篇文章应该是一个很好的起点:
http://www.htmlgoodies.com/beyond/php/article.php/3472551/PHP-Tutorial-Uploading-Files.htm
我认为这篇文章没有提到的一点是用户您的 Web 服务器根据需要运行,以便对您计划存储文件的文件夹具有写入权限。
执行 move_uploaded_file 后,您可以将有关文件的信息从 $_FILES 数组插入到 sql db 中
I believe this article should be a good starting point:
http://www.htmlgoodies.com/beyond/php/article.php/3472551/PHP-Tutorial-Uploading-Files.htm
One point which I don't think the article mentions is that the user which your web server runs as needs to have write access to the folder where you plan to store the files.
You can insert information about the file into the sql db from the $_FILES array after executing move_uploaded_file