PHP使用curl请求实现post方式上传图片文件功能示例

前端之家收集整理的这篇文章主要介绍了PHP使用curl请求实现post方式上传图片文件功能示例前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

本文实例讲述了PHP使用curl请求实现post方式上传图片文件功能分享给大家供大家参考,具体如下:

调用第三方api接口时,有时会遇到通过http协议上传图片,以下是一个微信公众平台新增永久素材的例子;

PHP代码

'@bag03.jpg',); $response = curl_http($url,'POST',$post_data); $params = array(); $params = json_decode($response,true); if (isset($params['errcode'])) { echo "error:" . $params['errcode']; echo "msg :" . $params['errmsg']; exit; } var_dump( $params ); /** * http请求方式: 默认GET */ function curl_http($url,$method="GET",$postfields){ $ch = curl_init(); curl_setopt($ch,CURLOPT_SSL_VERIFYPEER,FALSE); curl_setopt($ch,CURLOPT_RETURNTRANSFER,TRUE); curl_setopt($ch,CURLOPT_URL,$url); switch ($method) { case "POST": curl_setopt($ch,CURLOPT_POST,true); if (!empty($postfields)) { $hadFile = false; if (is_array($postfields) && isset($postfields['media'])) { /* 支持文件上传 */ if (class_exists('\CURLFile')) { curl_setopt($ch,CURLOPT_SAFE_UPLOAD,true); foreach ($postfields as $key => $value) { if (isPostHasFile($value)) { $postfields[$key] = new \CURLFile(realpath(ltrim($value,'@'))); $hadFile = true; } } } elseif (defined('CURLOPT_SAFE_UPLOAD')) { if (isPostHasFile($value)) { curl_setopt($ch,false); $hadFile = true; } } } $tmpdatastr = (!$hadFile && is_array($postfields)) ? http_build_query($postfields) : $postfields; curl_setopt($ch,CURLOPT_POSTFIELDS,$tmpdatastr); } break; default: curl_setopt($ch,CURLOPT_CUSTOMREQUEST,$method); /* //设置请求方式 */ break; } $ssl = preg_match('/^https:\/\//i',$url) ? TRUE : FALSE; curl_setopt($ch,$url); if($ssl){ curl_setopt($ch,FALSE); // https请求 不验证证书和hosts curl_setopt($ch,CURLOPT_SSL_VERIFYHOST,FALSE); // 不从证书中检查SSL加密算法是否存在 } $response = curl_exec($ch); curl_close($ch); if(empty($response)){ exit("错误请求"); } return $response; } function isPostHasFile($value) { if (is_string($value) && strpos($value,'@') === 0 && is_file(realpath(ltrim($value,'@')))) { return true; } return false; }

也可以使用PHP内置的系统函数,如果使用过程中出现问题,建议查看是否启用相应的系统函数

使用exec系统函数

'-100','errmsg' => '公众号服务出错,请联系管理员',); } return $params;

使用system系统函数

'-100',); } } return $params;

更多关于PHP相关内容感兴趣的读者可查看本站专题:《》、《》、《》、《》、《》及《

希望本文所述对大家PHP程序设计有所帮助。

原文链接:https://www.f2er.com/php/15875.html

猜你在找的PHP相关文章