PHP上传文件到BLOB
所以我遇到的问题是我似乎无法将我想要的文件发送到服务器。
我不确定我是否做错了什么,但我想我会问
<?
$file = file_get_contents($HTTP_POST_FILES['img']);
print $file;
?>
<form action="" method="post">
<input type="file" name="img" />
<input type="submit" value="submit"/>
</form>
So the issue I am having is it seems I cant send the file I want to the server.
I am not sure if I am doing something wrong, but thought I would ask
<?
$file = file_get_contents($HTTP_POST_FILES['img']);
print $file;
?>
<form action="" method="post">
<input type="file" name="img" />
<input type="submit" value="submit"/>
</form>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要将正确的
enctype
设置为You need to set the correct
enctype
to multipart/form-data on the form if you want to be able to upload files to the server:当然。您还没有阅读手册页。
你在这里: http://php.net/upload
Sure. You haven't read the manual page.
here you are: http://php.net/upload