Heim >Backend-Entwicklung >PHP-Tutorial > 请问一个关于用cURL实现文件下传的有关问题

请问一个关于用cURL实现文件下传的有关问题

WBOY
WBOYOriginal
2016-06-13 12:51:57878Durchsuche

请教一个关于用cURL实现文件上传的问题?


问题如题目,请大家帮忙解决下,我是刚刚开始学cURL的.

最好能带上测试案例附加源码!!

谢谢!!!!


------解决方案--------------------
http://curl.haxx.se/libcurl/c/post-callback.html
这里有一个现成的教程,自己用google翻译一下。
------解决方案--------------------
    $ch = curl_init();
    curl_setopt($ch, CURLOPT_HEADER, 0);
    curl_setopt($ch, CURLOPT_VERBOSE, 0);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
    curl_setopt($ch, CURLOPT_USERAGENT, "Mozilla/4.0 (compatible;)");
    curl_setopt($ch, CURLOPT_URL, _VIRUS_SCAN_URL);
    curl_setopt($ch, CURLOPT_POST, true);
    // same as 
    $post = array(
        "file_box"=>"@/path/to/myfile.jpg",
    );
    curl_setopt($ch, CURLOPT_POSTFIELDS, $post); 
    $response = curl_exec($ch);
?>
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn