利用 PHP CURL zip壓縮文件上傳


$postData['file'] = "@".getcwd()."/../attachment/qianbao/{$customer_id}.zip";

$this->log->info("Qianbao file path:".$postData['file']);
//$postData['sign'] = bin2hex(md5($str_sign)); //'file' => '@d:\usr\www\translate\document\Readme.txt'
//$postData['file'] = "@d:\home\oracle\xpay-1.0.0\attachment\qianbao\{$customer_id}.zip";

$postData['sign'] = md5($str_sign);


$this->log->info("Qianbao Sign:".$postData['sign']);

$postUrl = "http://www.happygrp.com/agent/merchant/import";//生產

$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, $postUrl);
curl_setopt($curl, CURLOPT_USERAGENT,'Opera/9.80 (Windows NT 6.2; Win64; x64) Presto/2.12.388 Version/12.15');
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false); // stop verifying certificate
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl, CURLOPT_POST, true);
//curl_setopt($curl, CURLOPT_HTTPHEADER, array('Content-Type: application/x-www-form-urlencoded'));
curl_setopt($curl, CURLOPT_POSTFIELDS, $postData);
curl_setopt($curl, CURLOPT_FOLLOWLOCATION, true);
$r = curl_exec($curl);
$e = curl_error($curl);
curl_close($curl);

  


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM