1. 程式人生 > >PHP CURL 模擬POST請求 提交資料或上傳檔案

PHP CURL 模擬POST請求 提交資料或上傳檔案


$file = '/doucment/Readme.txt';
$ch = curl_init();
$post_data = array(
    'loginfield' => 'username',
    'username' => 'ybb',
    'password' => '123456',
'file' => '@d:\usr\www\translate\document\Readme.txt'
);
curl_setopt($ch, CURLOPT_HEADER, false);
//啟用時會發送一個常規的POST請求,型別為:application/x-www-form-urlencoded
,就像表單提交的一樣。

curl_setopt($ch, CURLOPT_POST, true);  
curl_setopt($ch,CURLOPT_BINARYTRANSFER,true);
curl_setopt($ch, CURLOPT_POSTFIELDS,$post_data);
curl_setopt($ch, CURLOPT_URL, 'http://www.b.com/handleUpload.php');
$info= curl_exec($ch);
curl_close($ch);
   
print_r($info);