Rumah  >  Artikel  >  pembangunan bahagian belakang  >  请问一个关于用cURL实现文件下传的有关问题

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

WBOY
WBOYasal
2016-06-13 12:51:57843semak imbas

请教一个关于用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);
?>
Kenyataan:
Kandungan artikel ini disumbangkan secara sukarela oleh netizen, dan hak cipta adalah milik pengarang asal. Laman web ini tidak memikul tanggungjawab undang-undang yang sepadan. Jika anda menemui sebarang kandungan yang disyaki plagiarisme atau pelanggaran, sila hubungi admin@php.cn