如何使用 put 方法上传文件并将其他表单变量发布到一个表单中?
如果我对所有内容使用 post 方法,只需单击一次提交,我就可以上传文件和其他变量。我想尝试使用 put 方法,并且还想以一种形式和一次提交单击来发送带有文件的 post 变量。
If I use post method for all with one submit click I can upload files and other variables. I want to try using put method and also want to send post variables with the file in one form and one submit click.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,这是表单的正常操作方法。文件上传表单没有什么特别之处,除了必须指定
enctype
之外。您可以在同一表单中包含其他字段,当按下“提交”按钮时,它们都会一起发送。PHP 中唯一的服务器端区别是文件上传数据位于 $_FILES 超全局中。其他字段将像往常一样位于 $_POST 中。
Yes, that's the normal operating method for forms. There's nothing special about a file upload form, except having to specify the
enctype
. You can have other fields in the same form and they'll all be sent together when the Submit button is pressed.The only server-side difference in PHP is that file upload data is in the $_FILES superglobal. Other fields will be in $_POST as usual.