2014-10-08 66 views
-2

如何使用curl將使用curl的zip文件上傳到使用cakephp的https網站? 我想使用cakephp將zip文件上傳到網址。如何使用curl上傳一個使用curl到https網站的zip文件使用cakephp

$data1 = array('file' => "@/". realpath($file)."type=application/zip", 
        'Content-Type'=>'application/zip' 
        ); 


     $response = $this->_socket->post($this->url, $data1 , array('redirect' => true)); 
+0

請更準確地說明你想達到的目標,並且包括你迄今爲止所嘗試/完成的目標。我們不在這裏爲你做這項工作.. – 2014-10-08 09:44:16

+0

我已經添加了代碼,請檢查 – user3588018 2014-10-08 10:29:19

+0

它給了我錯誤ErrorCode:assessment-content-error(NOT_XML_OR_ZIP) – user3588018 2014-10-08 10:31:17

回答

0

我認爲這可能對您有所幫助。

$data1 = array('file' => "@/". realpath($file)."type=application/zip", 
        'Content-Type'=>'application/zip', 
        'sslVerifyPeer' => false /* try using both values true or false */ 
        ); 


    $response = $this->_socket->post($this->url, $data1 , array('redirect' => true));