我完全堅持這種情況下, 問題1: 我想發送文件從一個服務器到其他,發送文件我使用捲曲,標準或更常見通過curl發送文件的代碼 `$ url = $ callthis; $ filename = $ _FILES ['orig_file_name'] ['name']; $ filedata = $ _FILES ['orig_file_name'] ['tmp_name']; $ filesize = $ _FILES ['orig_file_name'] ['size']; 如果($ FILEDATA!=「」) {發送文件使用PHP CURL IIS服務器不工作
$headers = array("Content-Type:multipart/form-data"); // cURL headers for file uploading
$postfields = array("orig_file_name" => "@$filedata", "filename" => $filename, 'user_id' => $this->Session->read('userid'),
'artwork_type'=>$this->request->data['artwork_type'],
'description'=>$this->request->data['description'],
'itemstable_id'=>$this->request->data['itemstable_id'],
'upload_date'=>$this->request->data['upload_date'],
'brand_Approved'=>'New');
$ch = curl_init();
$options = array(
CURLOPT_URL => $url,
CURLOPT_HEADER => true,
CURLOPT_POST => 1,
CURLOPT_HTTPHEADER => $headers,
CURLOPT_POSTFIELDS => $postfields,
CURLOPT_INFILESIZE => $filesize,
CURLOPT_RETURNTRANSFER => true
); // cURL options
curl_setopt_array($ch, $options);
curl_exec($ch);
if(!curl_errno($ch))
{
$info = curl_getinfo($ch);
debug($info);
if ($info['http_code'] == 200)
return $this->redirect(array('action' => 'uploadedart'));
}
else
{
$errmsg = curl_error($ch);
$this->Session->setFlash(__($errmsg));
}
curl_close($ch);
}`
僅供參考,捲曲安裝在服務器上,並啓用 此代碼的工作完美我的本地PC上,我期待在Linux系統上相同的,但我的代碼將在amazone IIS服務器上實現,所以當我上傳代碼,然後我測試它給我0狀態代碼,當我谷歌,他們說你的網址是不正確的,在我的情況是正確的,所以問題是'@'符號在文件名和php curl文檔之前放在curl請求中,他們說@ sign是爲了告訴接收者服務器它是一個非純文本的物理文件,當我刪除這個@符號時,我得到了200個響應代碼從接收端,但文件沒有得到保存在t中他想要的目錄.....
問題2:我實現了另一個代碼從一個人在stackoverflow `$ url = $ callthis; $ filename = $ _FILES ['orig_file_name'] ['name']; $ filedata = $ _FILES ['orig_file_name'] ['tmp_name']; $ filesize = $ _FILES ['orig_file_name'] ['size']; // debug($ this-> request-> data); exit(); 如果($ FILEDATA!= ''){
move_uploaded_file($filedata, APP."webroot".DS."upload".DS.$filename);
$newfile=APP."webroot".DS."upload".DS.$filename;
//exit;
/* begin stuff */
$postfields = array('user_id' => $this->Session->read('userid'),
'artwork_type'=>$this->request->data['artwork_type'],
'description'=>$this->request->data['description'],
'itemstable_id'=>$this->request->data['itemstable_id'],
'upload_date'=>$this->request->data['upload_date'],
'brand_Approved'=>'New');
$file_url = $newfile; //here is the file route, in this case is on same directory but you can set URL too like "http://examplewebsite.com/test.txt"
$eol = "\r\n"; //default line-break for mime type
$BOUNDARY = md5(time()); //random boundaryid, is a separator for each param on my post curl function
$BODY=""; //init my curl body
$BODY.= '--'.$BOUNDARY. $eol; //start param header
$BODY .= 'Content-Disposition: form-data; name="otherfields"' . $eol . $eol; // last Content with 2 $eol, in this case is only 1 content.
$BODY .= serialize($postfields) . $eol;//param data in this case is a simple post data and 1 $eol for the end of the data
$BODY.= '--'.$BOUNDARY. $eol; // start 2nd param,
$BODY.= 'Content-Disposition: form-data; name="orig_file_name"; filename="'.$filename.'"'. $eol ; //first Content data for post file, remember you only put 1 when you are going to add more Contents, and 2 on the last, to close the Content Instance
$BODY.= 'Content-Type: application/octet-stream' . $eol; //Same before row
$BODY.= 'Content-Transfer-Encoding: base64' . $eol . $eol; // we put the last Content and 2 $eol,
$BODY.= chunk_split(base64_encode(file_get_contents($file_url))) . $eol; // we write the Base64 File Content and the $eol to finish the data,
$BODY.= '--'.$BOUNDARY .'--' . $eol. $eol; // we close the param and the post width "--" and 2 $eol at the end of our boundary header.
$ch = curl_init(); //init curl
curl_setopt($ch, CURLOPT_HTTPHEADER, array(
'X_PARAM_TOKEN : 71e2cb8b-42b7-4bf0-b2e8-53fbd2f578f9' //custom header for my api validation you can get it from $_SERVER["HTTP_X_PARAM_TOKEN"] variable
,"Content-Type: multipart/form-data; boundary=".$BOUNDARY) //setting our mime type for make it work on $_FILE variable
);
curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/1.0 (Windows NT 6.1; WOW64; rv:28.0) Gecko/20100101 Firefox/28.0'); //setting our user agent
curl_setopt($ch, CURLOPT_URL, $url); //setting our api post url
//curl_setopt($ch, CURLOPT_COOKIEJAR, $BOUNDARY.'.txt'); //saving cookies just in case we want
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1); // call return content
curl_setopt ($ch, CURLOPT_FOLLOWLOCATION, 1); //navigate the endpoint
curl_setopt($ch, CURLOPT_POST, true); //set as post
curl_setopt($ch, CURLOPT_POSTFIELDS, $BODY); // set our $BODY
$response = curl_exec($ch); // start curl navigation
print_r($response); //print response
this works fine but only with text files because it does
chunk_split(BASE64_ENCODE(的file_get_contents($ FILE_URL)))`我的意思是讀取文件發送,這在文本文件,但在我的情況下工作的罰款我想發送在問題2不工作,因爲它修改圖像內容,因此無法打開圖像的圖像....
fyi,我不能做jquery/ajax文件發送,我需要做它通過php,所以答案應該是有效可行的curl請求代碼發送文件或cakephp httpsocket發送文件
我的php版本是5.5 – ahsanali 2015-02-24 05:52:28