PHP上传文件到BLOB

发布于 2024-12-12 07:03:22 字数 304 浏览 0 评论 0原文

所以我遇到的问题是我似乎无法将我想要的文件发送到服务器。

我不确定我是否做错了什么,但我想我会问

 <?

$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 技术交流群。

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

发布评论

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

评论(2

与君绝 2024-12-19 07:03:22

您需要将正确的 enctype 设置为

<form action="" method="post" enctype="multipart/form-data">
    <input type="file" name="img" />
    <input type="submit" value="submit"/>
</form>

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:

<form action="" method="post" enctype="multipart/form-data">
    <input type="file" name="img" />
    <input type="submit" value="submit"/>
</form>
孤独岁月 2024-12-19 07:03:22

我不确定我是否做错了什么

当然。您还没有阅读手册页。

你在这里: http://php.net/upload

I am not sure if I am doing something wrong

Sure. You haven't read the manual page.

here you are: http://php.net/upload

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