Home >Backend Development >PHP Tutorial >微信开发,使用下面方法保存文件是无法保存

微信开发,使用下面方法保存文件是无法保存

WBOY
WBOYOriginal
2016-06-23 13:26:401096browse

使用下面方法 文件已生成,无法保存文件,菜鸟一只,希望帮忙解答下。
function savePic($serverId,$picName){
$accessToken = $this->getAccessToken();
$targetName = './upload/'.$picName.'.jpg';
$ch = curl_init("http://file.api.weixin.qq.com/cgi-bin/media/get?access_token=$accessToken&media_id=$serverId");
$fp = fopen($targetName, 'wb');
curl_setopt($ch, CURLOPT_FILE, $fp);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_exec($ch);
curl_close($ch);
fclose($fp);
}


回复讨论(解决方案)

无法保存文件 是什么意思?

无法保存文件 是什么意思?


文件新建成功了,方法执行完了以后 文件大小还是0kb

注释掉 curl_setopt($ch, CURLOPT_FILE, $fp);
$s = curl_exec($ch);
检查 $s 的长度

我怀疑是读取失败了

注释掉 curl_setopt($ch, CURLOPT_FILE, $fp);
$s = curl_exec($ch);
检查 $s 的长度

我怀疑是读取失败了


用strlen 读取长度是69416,是不是我写的curl有问题

你这样看看
curl_setopt($ch, CURLOPT_FILE, $fp);
curl_setopt($ch, CURLOPT_HEADER, 0);
//curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_exec($ch);

你这样看看
curl_setopt($ch, CURLOPT_FILE, $fp);
curl_setopt($ch, CURLOPT_HEADER, 0);
//curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_exec($ch);


好了,谢谢了,
Statement:
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