這篇文章要為大家介紹解php7中curl檔案上傳出現錯誤的方法。有一定的參考價值,有需要的朋友可以參考一下,希望對大家有幫助。
最近在專案跟微信公眾號的素材庫對接介面,採用curl的post方式提交素材檔案,發現一直提示
{“errcode”:41005,”errmsg”:”media data missing”}
程式碼內容
$url = self::$add_material . $accessToken . '&type=' . $key; $data = [ 'media' => '@' . $fileName, 'form-data' => $fileInfo, 'description' => json_encode([ 'title' => $fileName, 'introduction' => '' ]), ]; self::init($url); $data = is_array($data) ? http_build_query($data) : $data; curl_setopt(self::$curl, CURLOPT_POST, 1); curl_setopt(self::$curl, CURLOPT_POSTFIELDS, $data); $info = curl_exec(self::$curl); curl_close(self::$curl);
查閱了官方文件在php5.5後不再支援@,必須使用CurlFile或設定CURLOPT_SAFE_UPLOAD為1
在php7 curl如果改變CURLOPT_SAFE_UPLOAD會提示一個錯誤如下: curl_setopt(): Disabling safe uploads is no longer supported in 報錯##我們只能老實使用CurlFile來處理There are “@” issue on multipart POST requests.
Solution for PHP 5.5 or later:
Enable CURLOPT_SAFE_UPLOAD. ## inse CULOAD. “@”.
$url = self::$add_material . $accessToken . '&type=' . $key; $data = [ 'media' => new \CURLFile($fileName), 'form-data' => $fileInfo, 'description' => json_encode([ 'title' => $fileName, 'introduction' => '' ]), ]; self::init($url); $data = is_array($data) ? http_build_query($data) : $data; curl_setopt(self::$curl, CURLOPT_POST, 1); curl_setopt(self::$curl, CURLOPT_POSTFIELDS, $data); $info = curl_exec(self::$curl); curl_close(self::$curl);
然後發現這樣寫三個大坑(是我自己蠢)
1、如果CURLOPT_POSTFILEDS傳入的是陣列content_type就為multipart/form-data;如果CURLOPT_POSTFILEDS傳入的是json或key-value& content_type就為x-www-form_urlencoded;但是微信支援form-data傳遞的陣列 2、陣列裡面如果有包含物件對其進行http_build_query會將其改成陣列 3、CurlFile只能讀取伺服器內的路徑,如果要上傳網路上的位址,需要先下載到伺服器的暫存目錄,在通過CurlFile讀取檔案路徑(絕對路徑)所以我們接著調整程式碼
$url = self::$add_material . $accessToken . '&type=' . $key; $data = [ 'media' => new \CURLFile($fileName), 'form-data' => $fileInfo, 'description' => json_encode([ 'title' => $fileName, 'introduction' => '' ]), ]; self::init($url); curl_setopt(self::$curl, CURLOPT_POST, 1); curl_setopt(self::$curl, CURLOPT_POSTFIELDS, $data); $info = curl_exec(self::$curl); curl_close(self::$curl);
$url = self::$add_material . $accessToken . '&type=' . $key; $data = [ 'media' => new \CURLFile($fileName), 'form-data' => $fileInfo, 'description' => json_encode([ 'title' => $fileName, 'introduction' => '' ]), ]; self::init($url); curl_setopt(self::$curl, CURLOPT_POST, 1); @curl_setopt(self::$curl, CURLOPT_POSTFIELDS, $data); $info = curl_exec(self::$curl); curl_close(self::$curl);
以上是php7中的curl檔案上傳出現錯誤該怎麼辦的詳細內容。更多資訊請關注PHP中文網其他相關文章!