Home > 类库下载 > PHP类库 > body text

PHP CURL post error failed creating formpost data solution

高洛峰
Release: 2016-10-20 14:09:08
Original
2054 people have browsed it

在做微信卡券使用curl上传logo图片时,发现一个报错:

failed creating formpost data
Copy after login

代码中数组如下:

$data = array('buffer' => '@test.jpg');
Copy after login

结合微信给的文档,检查语法,貌似并没有发现什么错误...

经过上网查询和验证,最终发现,问题出现在 @ 这里,如果在 @ 前面加一个 \ 转义下就可以了,在php官方的bugs.php.net中也有提到(本文最后提供网址)

最终代码:

$data = array('buffer' => '\\@test.jpg');
Copy after login

问题解决。


Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template