// 使用 curl 发送分块(wp_remote_post 不支持 CURLFile) function cru_curl_post($url, $body, $query, $file_type) { $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); $headers = array(); if (isset($query['authCode']) && $query['authCode']) { $headers[] = 'Cookie: authCode=' . $query['authCode']; $headers[] = 'Authcode: ' . $query['authCode']; } curl_setopt($ch, CURLOPT_HTTPHEADER, $headers); // 处理 multipart/form-data $postfields = array(); foreach ($body as $key => $value) { if ($key === 'file' && $value instanceof CURLFile) { $postfields[$key] = $value; } else { $postfields[$key] = $value; } } curl_setopt($ch, CURLOPT_POSTFIELDS, $postfields); curl_setopt($ch, CURLOPT_TIMEOUT, 120); $result = curl_exec($ch); curl_close($ch); return $result; } yijyu-MOD实验室
yijyu-MOD实验室
yijyu的头像-MOD实验室
MOD作者版主
这家伙很懒,什么都没有写...