码迷,mamicode.com
首页 > Web开发 > 详细

curl_setopt用此函数设置上传文件请求的兼容性调整

时间:2016-04-18 13:25:31      阅读:247      评论:0      收藏:0      [点我收藏+]

标签:

在用curl_setopt($curl, CURLOPT_POSTFIELDS, $fileData);这个函数设置时会报错如下

curl_setopt(): The usage of the @filename API for file uploading is deprecated. Please use the CURLFile class instead

查看了相关文档发现如下一段话

 

技术分享

技术分享

根据这个提示

得把老版本中的请求参数如

$fileData = [‘media‘ => "@" . $filepath]; 这种写法改成

$fileData = [‘media‘ => new \CURLFile($filepath)];

参考文档:
http://php.net/manual/zh/function.curl-setopt.php
http://stackoverflow.com/questions/18482236/fb-api-php-curl-setopt-array-the-usage-of-the-filename-api-for-file-uploadin

curl_setopt用此函数设置上传文件请求的兼容性调整

标签:

原文地址:http://www.cnblogs.com/ryanlamp/p/5404035.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!