用 PHP 编写的简单/快速的文件上传脚本是什么?

发布于 2024-09-26 03:39:40 字数 96 浏览 5 评论 0原文

我正在制作一个网站,该网站赋予用户将文本文档上传到服务器的权限。然后,服务器应在上传文件时获取该文件并将其存储在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

心清如水 2024-10-03 03:39:40

我相信这篇文章应该是一个很好的起点:

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文