如何创建一个可以接受文件上传的 PHP 页面?

发布于 2024-11-03 20:17:05 字数 46 浏览 0 评论 0原文

我想从某个应用程序将文件上传到我的服务器。如何编写 PHP 页面来接受该文件?

I want to upload a file to my server from some application. How can I code a PHP page to accept this file?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

故乡的云 2024-11-10 20:17:05

应用程序应该只在 HTTP POST 请求中包含该文件,就像带有 file 类型的 input 的 HTML 表单一样。在 PHP 代码中,发布的文件内容将在 $_FILES 数组中可用。

更多信息请参见此处

请记住,“文件”的概念在 HTTP 上的含义与在本地计算机或目标服务器上的含义不同。在 HTTP 中,“文件”只是包装在 HTTP 请求或响应中的数据流,具有给定的内容类型和各种其他标头,与网页或图像或任何其他请求/响应没有什么不同。

The application should just include the file in an HTTP POST request as would an HTML form with an input of type file. In the PHP code, the posted file contents would be available in the $_FILES array.

Lots more information here.

Keep in mind that the concept of a "file" doesn't mean the same thing over HTTP that it does on a local computer or on the target server. In HTTP, the "file" is just a stream of data wrapped in an HTTP request or response with a given content type and various other headers, no different from a web page or an image or any other request/response.

叫嚣ゝ 2024-11-10 20:17:05

我建议阅读 PHP 手册中关于处理文件上传的章节

I would suggest reading the PHP manual chapter on handling file uploads

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