From 1f4552bb7305baa57e9eda9d8b2a090b21e3d1de Mon Sep 17 00:00:00 2001 From: qkqpttgf <45693631+qkqpttgf@users.noreply.github.com> Date: Sun, 16 Aug 2020 11:37:28 +0800 Subject: [PATCH] add platform: Baidu CFC --- common.php | 41 +++++++++++++++++++++++++++++++++++++++-- 1 file changed, 39 insertions(+), 2 deletions(-) diff --git a/common.php b/common.php index 215279c..5a3705c 100644 --- a/common.php +++ b/common.php @@ -6,6 +6,7 @@ global $ShowedCommonEnv; global $InnerEnv; global $ShowedInnerEnv; global $Base64Env; +global $timezones; $Base64Env = [ //'APIKey', // used in heroku. @@ -691,6 +692,42 @@ function array_value_isnot_null($arr) return $arr!==''; } +function curl($method, $url, $data = '', $headers = [], $returnheader = 0) +{ + //if (!isset($headers['Accept'])) $headers['Accept'] = '*/*'; + //if (!isset($headers['Referer'])) $headers['Referer'] = $url; + //if (!isset($headers['Content-Type'])) $headers['Content-Type'] = 'application/x-www-form-urlencoded'; + $sendHeaders = array(); + foreach ($headers as $headerName => $headerVal) { + $sendHeaders[] = $headerName . ': ' . $headerVal; + } + $ch = curl_init(); + curl_setopt($ch, CURLOPT_URL, $url); + curl_setopt($ch, CURLOPT_CUSTOMREQUEST,$method); + curl_setopt($ch, CURLOPT_POSTFIELDS, $data); + curl_setopt($ch, CURLOPT_TIMEOUT, 5); + curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 10); + curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); + curl_setopt($ch, CURLOPT_HEADER, $returnheader); + curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0); + curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0); + curl_setopt($ch, CURLOPT_HTTPHEADER, $sendHeaders); + //$response['body'] = curl_exec($ch); + if ($returnheader) { + list($returnhead, $response['body']) = explode("\r\n\r\n", curl_exec($ch)); + foreach (explode("\r\n", $returnhead) as $head) { + $tmp = explode(': ', $head); + $heads[$tmp[0]] = $tmp[1]; + } + $response['returnhead'] = $heads; + } else { + $response['body'] = curl_exec($ch); + } + $response['stat'] = curl_getinfo($ch,CURLINFO_HTTP_CODE); + curl_close($ch); + return $response; +} + function curl_request($url, $data = false, $headers = [], $returnheader = 0) { if (!isset($headers['Accept'])) $headers['Accept'] = '*/*'; @@ -815,9 +852,7 @@ function message($message, $title = 'Message', $statusCode = 200)

' . $title . '

- ' . $message . ' -

@@ -1794,6 +1829,8 @@ function EnvOpt($needUpdate = 0) $canOneKeyUpate = 1; } elseif (isset($_SERVER['FC_SERVER_PATH'])&&$_SERVER['FC_SERVER_PATH']==='/var/fc/runtime/php7.2') { $canOneKeyUpate = 1; + } elseif ($_SERVER['BCE_CFC_RUNTIME_NAME']=='php7') { + $canOneKeyUpate = 1; } elseif ($_SERVER['_APP_SHARE_DIR']==='/var/share/CFF/processrouter') { $canOneKeyUpate = 1; } else {