2017-09-13 141 views
0

嗨我有以下CURL調用將本地文本文件上傳到另一個位置,現在只在localhost(即爲了測試目的,一旦運行我將成功推送服務器位置)。但問題是本地文本文件沒有發佈。有什麼辦法來發布文件。CURL調用不上傳文件從本地到遠程服務器PHP

注意 - 我不想通過的file_get_contentsFTP上傳做到這一點。即使我引用了其他問題,但沒有解決我的問題。

<?php 
/* CURL Initilization */ 
$curl = curl_init(); 
/* Setting the remove URL */ 
curl_setopt($curl, CURLOPT_URL, 'http://127.0.0.1/php_training/get_curl_call.php'); 
/* I want to return the transfer and store in data instead of outputing on screen */ 
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); 
/* To upload safely */ 
curl_setopt($curl, CURLOPT_SAFE_UPLOAD, true); 
/* Enable sending the data as POST data */ 
curl_setopt($curl, CURLOPT_POST, true); 
/* Sending the data using @ is before 5.5, now I am using curl_file_create */ 
/* realpath - will get the absolute path of the .txt file */ 
curl_setopt($curl, CURLOPT_POSTFIELDS, array(
     'log_file' => curl_file_create(realpath('websites.txt')) 
    ) 
); 
/* Store the response of curl execution */ 
$response = curl_exec($curl); 
print_r($response, curl_error($curl)); 
curl_close($curl); 

以下是get_curl_call.php

<?php 
// $filename = $_POST['log_file']; 
print_r($_POST);exit; 

以下是websites.txt文件

Sat Sep 9 07:31:18 2017 notifications.google.com 192.168.150.201 
Sat Sep 9 07:31:18 2017 notifications.google.com 192.168.150.201 
Sat Sep 9 07:31:19 2017 plus.l.google.com 192.168.150.201 
Sat Sep 9 07:31:19 2017 plus.l.google.com 192.168.150.201 

的內容get_curl_call.php的輸出

Array () 

我無法糾正爲什麼文件沒有上傳。任何幫助真的很感激。

+0

測試在'curl_setopt($捲曲,CURLOPT_POSTFIELDS,$ POSTDATA)'$ POSTDATA必須是串... – marekful

+0

@marekful沒關係將會改變,並嘗試 –

+0

@marekful如果我使用上面的帖子數據作爲'log_file'=> file_get_contents(realpath('websites.txt'))。它會起作用,還有其他方法可以實現這一點。沒有轉換成字符串 –

回答

1

請嘗試下面的代碼,我已根據您的需要更新它。當我們發佈一個文件時,它不會像使用$_POST那樣顯示,而是看你需要打印的文件$_FILES

我還沒有測試過你的代碼,但對我來說,它似乎很好。您的主要錯誤是您正在使用$_POST打印上載文件。文件上傳可在$_FILES陣列中找到。嘗試打印。

上傳文件:(這與舊版本的PHP兼容) 請注意,爲了兼容目的,當CURLFile不可用時(對於小於5.5的PHP),我使用了file_get_contents。

<?php 

$file = "websites.txt"; 
upload_with_compatibility($file); 

function upload_with_compatibility($file){ 
    if (version_compare(phpversion(), '5.5', '>=')) { 
     echo "Upload will be done using CURLFile\n"; 
     upload($file); //CURL file upload using CURLFile for PHP v5.5 or greater 
    }else{ 
     echo "Upload will be done without CURLFile\n"; 
     compatibleUpload($file); //CURL file upload without CURLFile for PHP less than v5.5 
    } 
} 

//Upload file using CURLFile 
function upload($file){ 
    $target = "http://localhost:8888/upload_file.php"; 
    $host = parse_url($target); 

    $cFile = new CURLFile($file,'text/plain', $file); 
    $data = array(
     'log_file' => $cFile, 
    ); 

    //you can play around with headers, and adjust as per your need 
    $agent = 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.101 Safari/537.36'; 
    $curlHeaders = array(
     'Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8', 
     'Accept-Encoding: gzip, deflate', 
     'Accept-Language: en-US,en;q=0.8', 
     'User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.101 Safari/537.36', //change user agent if you want 
     'Connection: Keep-Alive', 
     'Pragma: no-cache', 
     'Referer: http://localhost:8888/upload.php', //you can change referer, if you want or remove it 
     'Host: ' . $host['host'] . (isset($host['port']) ? ':' . $host['port'] : null), // building host header 
     'Cache-Control: max-age=0', 
     'Cookie: __utma=61117235.2020578233.1500534080.1500894744.1502696111.4; __utmz=61117235.1500534080.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)', //adjust your cookie if you want 
     'Expect: ' 
    ); 

    $curl = curl_init(); 
    curl_setopt($curl, CURLOPT_URL, $target); 
    curl_setopt($curl, CURLOPT_HEADER , true); //we need header 
    curl_setopt($curl, CURLOPT_USERAGENT,$agent); 
    curl_setopt($curl, CURLOPT_HTTPHEADER, $curlHeaders); 
    curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false); // stop verifying certificate 
    curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); 
    curl_setopt($curl, CURLOPT_POST, true); // enable posting 
    curl_setopt($curl, CURLOPT_POSTFIELDS, $data); // post images 
    curl_setopt($curl, CURLOPT_FOLLOWLOCATION, true); // if any redirection after upload 
    curl_setopt($curl, CURLOPT_SAFE_UPLOAD, true); 
    $r = curl_exec($curl); 
    if (curl_errno($curl)) { 
     $error = curl_error($curl); 
     print_r($error); 
    } else { 
     // check the HTTP status code of the request 
     $resultStatus = curl_getinfo($curl, CURLINFO_HTTP_CODE); 
     if ($resultStatus != 200) { 
      print_r($resultStatus); 
     }else{ 
      //successfull 
      print_r($r); 
     } 
    } 
    curl_close($curl); 
} 

//Upload file without using CURLFile, because we are upload a file, so we need to generate form boundry 
function compatibleUpload($file){ 
    $target = "http://localhost:8888/upload_file.php"; 
    //use this to send any post parameters expect file types 
    //if you are not sending any other post params expect file, just assign an empty array 
    // $assoc = array(
    //  'name' => 'demo', 
    //  'status' => '1' 
    //); 
    $assoc = array(); //like this 

    //this array is used to send files 
    $files = array('log_file' => $file); 

    static $disallow = array("\0", "\"", "\r", "\n"); 

    // build normal parameters 
    foreach ($assoc as $k => $v) { 
     $k = str_replace($disallow, "_", $k); 
     $body[] = implode("\r\n", array(
      "Content-Disposition: form-data; name=\"{$k}\"", 
      "", 
      filter_var($v), 
     )); 
    } 

    // build file parameters 
    foreach ($files as $k => $v) { 
     switch (true) { 
      case false === $v = realpath(filter_var($v)): 
      case !is_file($v): 
      case !is_readable($v): 
       continue; // or return false, throw new InvalidArgumentException 
     } 
     $data = file_get_contents($v); 
     $v = call_user_func("end", explode(DIRECTORY_SEPARATOR, $v)); 
     $k = str_replace($disallow, "_", $k); 
     $v = str_replace($disallow, "_", $v); 
     $body[] = implode("\r\n", array(
      "Content-Disposition: form-data; name=\"{$k}\"; filename=\"{$v}\"", 
      "Content-Type: application/octet-stream", 
      "", 
      $data, 
     )); 
    } 

    // generate safe boundary 
    do { 
     $boundary = "---------------------" . md5(mt_rand() . microtime()); 
    } while (preg_grep("/{$boundary}/", $body)); 

    // add boundary for each parameters 
    array_walk($body, function (&$part) use ($boundary) { 
     $part = "--{$boundary}\r\n{$part}"; 
    }); 

    // add final boundary 
    $body[] = "--{$boundary}--"; 
    $body[] = ""; 

    // set options 
    $ch = curl_init(); 
    curl_setopt($ch, CURLOPT_URL, $target); 
    curl_setopt($ch, CURLOPT_HEADER , true); //we need header 
    curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); // stop verifying certificate 
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); 
    curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true); 
    curl_setopt_array($ch, array(
     CURLOPT_POST  => true, 
     CURLOPT_POSTFIELDS => implode("\r\n", $body), 
     CURLOPT_HTTPHEADER => array(
      "Expect: ", 
      "Content-Type: multipart/form-data; boundary={$boundary}", // change Content-Type 
     ), 
    )); 
    $r = curl_exec($ch); 
    if (curl_errno($ch)) { 
     $error = curl_error($ch); 
     print_r($error); 
    } else { 
     // check the HTTP status code of the request 
     $resultStatus = curl_getinfo($ch, CURLINFO_HTTP_CODE); 
     if ($resultStatus != 200) { 
      print_r($resultStatus); 
     }else{ 
      //successfully uploaded 
      print_r($r); 
     } 
    } 
    curl_close($ch); 
} 
?> 

上傳處理:

<?php 
    print_r($_POST); //this will print post varibales expect file types 
    print_r($_FILES); // this will print files that are posted 
?> 

樣品我試着上傳:(websites.txt)CURL結果(PHP版本5.5及以上)

Upload will be done using CURLFile 
HTTP/1.1 200 OK 
Date: Wed, 13 Sep 2017 07:11:07 GMT 
Server: Apache 
X-Powered-By: PHP/5.5.38 
Keep-Alive: timeout=5, max=100 
Connection: Keep-Alive 
Transfer-Encoding: chunked 
Content-Type: text/html 

Array 
(
) 
Array 
(
    [log_file] => Array 
     (
      [name] => websites.txt 
      [type] => text/plain 
      [tmp_name] => /Applications/MAMP/tmp/php/phpRp8S4T 
      [error] => 0 
      [size] => 245 
     ) 

) 

Sat Sep 9 07:31:18 2017 notifications.google.com 192.168.150.201 
Sat Sep 9 07:31:18 2017 notifications.google.com 192.168.150.201 
Sat Sep 9 07:31:19 2017 plus.l.google.com 192.168.150.201 
Sat Sep 9 07:31:19 2017 plus.l.google.com 192.168.150.201 

輸出

CURL結果的輸出(PHP ver less th一個5.5,我對5.4.45)

Upload will be done without CURLFile 
HTTP/1.1 200 OK 
Date: Wed, 13 Sep 2017 07:17:43 GMT 
Server: Apache 
X-Powered-By: PHP/5.4.45 
Transfer-Encoding: chunked 
Content-Type: text/html 

Array 
(
) 
Array 
(
    [log_file] => Array 
     (
      [name] => websites.txt 
      [type] => application/octet-stream 
      [tmp_name] => /Applications/MAMP/tmp/php/phpQWGlEG 
      [error] => 0 
      [size] => 245 
     ) 

) 
+0

嘿,即使改變我的需求,它不工作。是否有可能通過CURL在php上傳文件 –

+0

是的,這是可能的。讓我爲你的需要創建一個具體的例子。會更新你。什麼是你的PHP版本? –

+0

這對我來說是一個很大的幫助。真的很感激,如果我能得到一個。 –

相關問題