PHP 5.5以上 使用 CURL 上传文件的代码:

curl_setopt(ch, CURLOPT_POSTFIELDS, [
    'file' => new CURLFile(realpath('image.png')), 
]);

http://php.net/manual/en/class.curlfile.php

相关文章: