common.php 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749
  1. <?php
  2. // 公共助手函数
  3. use app\admin\model\Admin;
  4. use app\common\model\User;
  5. use app\common\service\SubService;
  6. use Cache\Adapter\Redis\RedisCachePool;
  7. use Cache\Bridge\SimpleCache\SimpleCacheBridge;
  8. use EasyWeChat\Factory;
  9. use Elastic\Elasticsearch\ClientBuilder;
  10. use Symfony\Component\VarExporter\VarExporter;
  11. use think\Cache;
  12. use think\exception\HttpResponseException;
  13. use think\Log;
  14. use think\Response;
  15. if (!function_exists('__')) {
  16. /**
  17. * 获取语言变量值
  18. * @param string $name 语言变量名
  19. * @param array $vars 动态变量值
  20. * @param string $lang 语言
  21. * @return mixed
  22. */
  23. function __($name, $vars = [], $lang = '')
  24. {
  25. if (is_numeric($name) || !$name) {
  26. return $name;
  27. }
  28. if (!is_array($vars)) {
  29. $vars = func_get_args();
  30. array_shift($vars);
  31. $lang = '';
  32. }
  33. return \think\Lang::get($name, $vars, $lang);
  34. }
  35. }
  36. if (!function_exists('format_bytes')) {
  37. /**
  38. * 将字节转换为可读文本
  39. * @param int $size 大小
  40. * @param string $delimiter 分隔符
  41. * @param int $precision 小数位数
  42. * @return string
  43. */
  44. function format_bytes($size, $delimiter = '', $precision = 2)
  45. {
  46. $units = array('B', 'KB', 'MB', 'GB', 'TB', 'PB');
  47. for ($i = 0; $size >= 1024 && $i < 6; $i++) {
  48. $size /= 1024;
  49. }
  50. return round($size, $precision) . $delimiter . $units[$i];
  51. }
  52. }
  53. if (!function_exists('datetime')) {
  54. /**
  55. * 将时间戳转换为日期时间
  56. * @param int $time 时间戳
  57. * @param string $format 日期时间格式
  58. * @return string
  59. */
  60. function datetime($time, $format = 'Y-m-d H:i:s')
  61. {
  62. $time = is_numeric($time) ? $time : strtotime($time);
  63. return date($format, $time);
  64. }
  65. }
  66. if (!function_exists('human_date')) {
  67. /**
  68. * 获取语义化时间
  69. * @param int $time 时间
  70. * @param int $local 本地时间
  71. * @return string
  72. */
  73. function human_date($time, $local = null)
  74. {
  75. return \fast\Date::human($time, $local);
  76. }
  77. }
  78. if (!function_exists('cdnurl')) {
  79. /**
  80. * 获取上传资源的CDN的地址
  81. * @param string $url 资源相对地址
  82. * @param boolean $domain 是否显示域名 或者直接传入域名
  83. * @return string
  84. */
  85. function cdnurl($url, $domain = false)
  86. {
  87. $regex = "/^((?:[a-z]+:)?\/\/|data:image\/)(.*)/i";
  88. $cdnurl = \think\Config::get('upload.cdnurl');
  89. $url = preg_match($regex, $url) || ($cdnurl && stripos($url, $cdnurl) === 0) ? $url : $cdnurl . $url;
  90. if ($domain && !preg_match($regex, $url)) {
  91. $domain = is_bool($domain) ? request()->domain() : $domain;
  92. $url = $domain . $url;
  93. }
  94. return $url;
  95. }
  96. }
  97. if (!function_exists('is_really_writable')) {
  98. /**
  99. * 判断文件或文件夹是否可写
  100. * @param string $file 文件或目录
  101. * @return bool
  102. */
  103. function is_really_writable($file)
  104. {
  105. if (DIRECTORY_SEPARATOR === '/') {
  106. return is_writable($file);
  107. }
  108. if (is_dir($file)) {
  109. $file = rtrim($file, '/') . '/' . md5(mt_rand());
  110. if (($fp = @fopen($file, 'ab')) === false) {
  111. return false;
  112. }
  113. fclose($fp);
  114. @chmod($file, 0777);
  115. @unlink($file);
  116. return true;
  117. } elseif (!is_file($file) or ($fp = @fopen($file, 'ab')) === false) {
  118. return false;
  119. }
  120. fclose($fp);
  121. return true;
  122. }
  123. }
  124. if (!function_exists('rmdirs')) {
  125. /**
  126. * 删除文件夹
  127. * @param string $dirname 目录
  128. * @param bool $withself 是否删除自身
  129. * @return boolean
  130. */
  131. function rmdirs($dirname, $withself = true)
  132. {
  133. if (!is_dir($dirname)) {
  134. return false;
  135. }
  136. $files = new RecursiveIteratorIterator(
  137. new RecursiveDirectoryIterator($dirname, RecursiveDirectoryIterator::SKIP_DOTS),
  138. RecursiveIteratorIterator::CHILD_FIRST
  139. );
  140. foreach ($files as $fileinfo) {
  141. $todo = ($fileinfo->isDir() ? 'rmdir' : 'unlink');
  142. $todo($fileinfo->getRealPath());
  143. }
  144. if ($withself) {
  145. @rmdir($dirname);
  146. }
  147. return true;
  148. }
  149. }
  150. if (!function_exists('copydirs')) {
  151. /**
  152. * 复制文件夹
  153. * @param string $source 源文件夹
  154. * @param string $dest 目标文件夹
  155. */
  156. function copydirs($source, $dest)
  157. {
  158. if (!is_dir($dest)) {
  159. mkdir($dest, 0755, true);
  160. }
  161. foreach (
  162. $iterator = new RecursiveIteratorIterator(
  163. new RecursiveDirectoryIterator($source, RecursiveDirectoryIterator::SKIP_DOTS),
  164. RecursiveIteratorIterator::SELF_FIRST
  165. ) as $item
  166. ) {
  167. if ($item->isDir()) {
  168. $sontDir = $dest . DS . $iterator->getSubPathName();
  169. if (!is_dir($sontDir)) {
  170. mkdir($sontDir, 0755, true);
  171. }
  172. } else {
  173. copy($item, $dest . DS . $iterator->getSubPathName());
  174. }
  175. }
  176. }
  177. }
  178. if (!function_exists('mb_ucfirst')) {
  179. function mb_ucfirst($string)
  180. {
  181. return mb_strtoupper(mb_substr($string, 0, 1)) . mb_strtolower(mb_substr($string, 1));
  182. }
  183. }
  184. if (!function_exists('addtion')) {
  185. /**
  186. * 附加关联字段数据
  187. * @param array $items 数据列表
  188. * @param mixed $fields 渲染的来源字段
  189. * @return array
  190. */
  191. function addtion($items, $fields)
  192. {
  193. if (!$items || !$fields) {
  194. return $items;
  195. }
  196. $fieldsArr = [];
  197. if (!is_array($fields)) {
  198. $arr = explode(',', $fields);
  199. foreach ($arr as $k => $v) {
  200. $fieldsArr[$v] = ['field' => $v];
  201. }
  202. } else {
  203. foreach ($fields as $k => $v) {
  204. if (is_array($v)) {
  205. $v['field'] = isset($v['field']) ? $v['field'] : $k;
  206. } else {
  207. $v = ['field' => $v];
  208. }
  209. $fieldsArr[$v['field']] = $v;
  210. }
  211. }
  212. foreach ($fieldsArr as $k => &$v) {
  213. $v = is_array($v) ? $v : ['field' => $v];
  214. $v['display'] = isset($v['display']) ? $v['display'] : str_replace(['_ids', '_id'], ['_names', '_name'], $v['field']);
  215. $v['primary'] = isset($v['primary']) ? $v['primary'] : '';
  216. $v['column'] = isset($v['column']) ? $v['column'] : 'name';
  217. $v['model'] = isset($v['model']) ? $v['model'] : '';
  218. $v['table'] = isset($v['table']) ? $v['table'] : '';
  219. $v['name'] = isset($v['name']) ? $v['name'] : str_replace(['_ids', '_id'], '', $v['field']);
  220. }
  221. unset($v);
  222. $ids = [];
  223. $fields = array_keys($fieldsArr);
  224. foreach ($items as $k => $v) {
  225. foreach ($fields as $m => $n) {
  226. if (isset($v[$n])) {
  227. $ids[$n] = array_merge(isset($ids[$n]) && is_array($ids[$n]) ? $ids[$n] : [], explode(',', $v[$n]));
  228. }
  229. }
  230. }
  231. $result = [];
  232. foreach ($fieldsArr as $k => $v) {
  233. if ($v['model']) {
  234. $model = new $v['model'];
  235. } else {
  236. $model = $v['name'] ? \think\Db::name($v['name']) : \think\Db::table($v['table']);
  237. }
  238. $primary = $v['primary'] ? $v['primary'] : $model->getPk();
  239. $result[$v['field']] = isset($ids[$v['field']]) ? $model->where($primary, 'in', $ids[$v['field']])->column("{$primary},{$v['column']}") : [];
  240. }
  241. foreach ($items as $k => &$v) {
  242. foreach ($fields as $m => $n) {
  243. if (isset($v[$n])) {
  244. $curr = array_flip(explode(',', $v[$n]));
  245. $v[$fieldsArr[$n]['display']] = implode(',', array_intersect_key($result[$n], $curr));
  246. }
  247. }
  248. }
  249. return $items;
  250. }
  251. }
  252. if (!function_exists('var_export_short')) {
  253. /**
  254. * 使用短标签打印或返回数组结构
  255. * @param mixed $data
  256. * @param boolean $return 是否返回数据
  257. * @return string
  258. */
  259. function var_export_short($data, $return = true)
  260. {
  261. return var_export($data, $return);
  262. $replaced = [];
  263. $count = 0;
  264. //判断是否是对象
  265. if (is_resource($data) || is_object($data)) {
  266. return var_export($data, $return);
  267. }
  268. //判断是否有特殊的键名
  269. $specialKey = false;
  270. array_walk_recursive($data, function (&$value, &$key) use (&$specialKey) {
  271. if (is_string($key) && (stripos($key, "\n") !== false || stripos($key, "array (") !== false)) {
  272. $specialKey = true;
  273. }
  274. });
  275. if ($specialKey) {
  276. return var_export($data, $return);
  277. }
  278. array_walk_recursive($data, function (&$value, &$key) use (&$replaced, &$count, &$stringcheck) {
  279. if (is_object($value) || is_resource($value)) {
  280. $replaced[$count] = var_export($value, true);
  281. $value = "##<{$count}>##";
  282. } else {
  283. if (is_string($value) && (stripos($value, "\n") !== false || stripos($value, "array (") !== false)) {
  284. $index = array_search($value, $replaced);
  285. if ($index === false) {
  286. $replaced[$count] = var_export($value, true);
  287. $value = "##<{$count}>##";
  288. } else {
  289. $value = "##<{$index}>##";
  290. }
  291. }
  292. }
  293. $count++;
  294. });
  295. $dump = var_export($data, true);
  296. $dump = preg_replace('#(?:\A|\n)([ ]*)array \(#i', '[', $dump); // Starts
  297. $dump = preg_replace('#\n([ ]*)\),#', "\n$1],", $dump); // Ends
  298. $dump = preg_replace('#=> \[\n\s+\],\n#', "=> [],\n", $dump); // Empties
  299. $dump = preg_replace('#\)$#', "]", $dump); //End
  300. if ($replaced) {
  301. $dump = preg_replace_callback("/'##<(\d+)>##'/", function ($matches) use ($replaced) {
  302. return isset($replaced[$matches[1]]) ? $replaced[$matches[1]] : "''";
  303. }, $dump);
  304. }
  305. if ($return === true) {
  306. return $dump;
  307. } else {
  308. echo $dump;
  309. }
  310. }
  311. }
  312. if (!function_exists('letter_avatar')) {
  313. /**
  314. * 首字母头像
  315. * @param $text
  316. * @return string
  317. */
  318. function letter_avatar($text)
  319. {
  320. $total = unpack('L', hash('adler32', $text, true))[1];
  321. $hue = $total % 360;
  322. list($r, $g, $b) = hsv2rgb($hue / 360, 0.3, 0.9);
  323. $bg = "rgb({$r},{$g},{$b})";
  324. $color = "#ffffff";
  325. $first = mb_strtoupper(mb_substr($text, 0, 1));
  326. $src = base64_encode('<svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="100" width="100"><rect fill="' . $bg . '" x="0" y="0" width="100" height="100"></rect><text x="50" y="50" font-size="50" text-copy="fast" fill="' . $color . '" text-anchor="middle" text-rights="admin" dominant-baseline="central">' . $first . '</text></svg>');
  327. $value = 'data:image/svg+xml;base64,' . $src;
  328. return $value;
  329. }
  330. }
  331. if (!function_exists('hsv2rgb')) {
  332. function hsv2rgb($h, $s, $v)
  333. {
  334. $r = $g = $b = 0;
  335. $i = floor($h * 6);
  336. $f = $h * 6 - $i;
  337. $p = $v * (1 - $s);
  338. $q = $v * (1 - $f * $s);
  339. $t = $v * (1 - (1 - $f) * $s);
  340. switch ($i % 6) {
  341. case 0:
  342. $r = $v;
  343. $g = $t;
  344. $b = $p;
  345. break;
  346. case 1:
  347. $r = $q;
  348. $g = $v;
  349. $b = $p;
  350. break;
  351. case 2:
  352. $r = $p;
  353. $g = $v;
  354. $b = $t;
  355. break;
  356. case 3:
  357. $r = $p;
  358. $g = $q;
  359. $b = $v;
  360. break;
  361. case 4:
  362. $r = $t;
  363. $g = $p;
  364. $b = $v;
  365. break;
  366. case 5:
  367. $r = $v;
  368. $g = $p;
  369. $b = $q;
  370. break;
  371. }
  372. return [
  373. floor($r * 255),
  374. floor($g * 255),
  375. floor($b * 255)
  376. ];
  377. }
  378. }
  379. if (!function_exists('check_nav_active')) {
  380. /**
  381. * 检测会员中心导航是否高亮
  382. */
  383. function check_nav_active($url, $classname = 'active')
  384. {
  385. $auth = \app\common\library\Auth::instance();
  386. $requestUrl = $auth->getRequestUri();
  387. $url = ltrim($url, '/');
  388. return $requestUrl === str_replace(".", "/", $url) ? $classname : '';
  389. }
  390. }
  391. if (!function_exists('check_cors_request')) {
  392. /**
  393. * 跨域检测
  394. */
  395. function check_cors_request()
  396. {
  397. if (isset($_SERVER['HTTP_ORIGIN']) && $_SERVER['HTTP_ORIGIN']) {
  398. $info = parse_url($_SERVER['HTTP_ORIGIN']);
  399. $domainArr = explode(',', config('fastadmin.cors_request_domain'));
  400. $domainArr[] = request()->host(true);
  401. if (in_array("*", $domainArr) || in_array($_SERVER['HTTP_ORIGIN'], $domainArr) || (isset($info['host']) && in_array($info['host'], $domainArr))) {
  402. header("Access-Control-Allow-Origin: " . $_SERVER['HTTP_ORIGIN']);
  403. } else {
  404. $response = Response::create('跨域检测无效', 'html', 403);
  405. throw new HttpResponseException($response);
  406. }
  407. header('Access-Control-Allow-Credentials: true');
  408. header('Access-Control-Max-Age: 86400');
  409. if ($_SERVER['REQUEST_METHOD'] == 'OPTIONS') {
  410. if (isset($_SERVER['HTTP_ACCESS_CONTROL_REQUEST_METHOD'])) {
  411. header("Access-Control-Allow-Methods: GET, POST, PUT, DELETE, OPTIONS");
  412. }
  413. if (isset($_SERVER['HTTP_ACCESS_CONTROL_REQUEST_HEADERS'])) {
  414. header("Access-Control-Allow-Headers: {$_SERVER['HTTP_ACCESS_CONTROL_REQUEST_HEADERS']}");
  415. }
  416. $response = Response::create('', 'html');
  417. throw new HttpResponseException($response);
  418. }
  419. }
  420. }
  421. }
  422. if (!function_exists('xss_clean')) {
  423. /**
  424. * 清理XSS
  425. */
  426. function xss_clean($content, $is_image = false)
  427. {
  428. return \app\common\library\Security::instance()->xss_clean($content, $is_image);
  429. }
  430. }
  431. if (!function_exists('check_ip_allowed')) {
  432. /**
  433. * 检测IP是否允许
  434. * @param string $ip IP地址
  435. */
  436. function check_ip_allowed($ip = null)
  437. {
  438. $ip = is_null($ip) ? request()->ip() : $ip;
  439. $forbiddenipArr = config('site.forbiddenip');
  440. $forbiddenipArr = !$forbiddenipArr ? [] : $forbiddenipArr;
  441. $forbiddenipArr = is_array($forbiddenipArr) ? $forbiddenipArr : array_filter(explode("\n", str_replace("\r\n", "\n", $forbiddenipArr)));
  442. $forbiddenipArr[]='127.0.0.1';
  443. if (/*$forbiddenipArr && */ !config('app_debug') && !\Symfony\Component\HttpFoundation\IpUtils::checkIp($ip, $forbiddenipArr)) {
  444. //$response = Response::create('请求未加入白名单('.$ip.')无权访问', 'html', 403);
  445. //throw new HttpResponseException($response);
  446. }
  447. }
  448. }
  449. function payment(User $user){
  450. static $payment=[];
  451. if(isset($payment[$user['type']])){
  452. return $payment[$user['type']];
  453. }
  454. if($user['type']==1){
  455. $appid=config('site.user_appid');
  456. }else{
  457. $appid=config('site.sender_appid');
  458. }
  459. $cert=config('site.mch_cert');
  460. $key=config('site.mch_key');
  461. $cert_path=RUNTIME_PATH.'/mch_cert.pem';
  462. $key_path=RUNTIME_PATH.'/key';
  463. file_put_contents($cert_path,$cert);
  464. file_put_contents($key_path,$key);
  465. $config = [
  466. // 必要配置
  467. 'app_id' => $appid,
  468. 'mch_id' => config('site.mch_id'),
  469. 'key' => config('site.mch_secret'),
  470. // 如需使用敏感接口(如退款、发送红包等)需要配置 API 证书路径(登录商户平台下载 API 证书)
  471. 'cert_path' => $cert_path, // XXX: 绝对路径!!!!
  472. 'key_path' => $key_path, // XXX: 绝对路径!!!!
  473. 'notify_url' => '默认的订单回调地址', // 你也可以在下单时单独设置来想覆盖它
  474. ];
  475. $p=Factory::payment($config);
  476. $payment[$user['type']]=$p;
  477. return $p;
  478. }
  479. function fullUrl($url){
  480. if(parse_url($url,PHP_URL_SCHEME)){
  481. return $url;
  482. }
  483. $url=request()->scheme().'://'.request()->host(true).$url;
  484. return $url;
  485. }
  486. function throw_user($msg,$data=null){
  487. $err=new \app\UserException($msg);
  488. $err->setData($data);
  489. throw $err;
  490. }
  491. /**
  492. * 生成订单号
  493. * @param string $prefix
  494. * @return string
  495. */
  496. function order_no($prefix=''){
  497. list($m,$_)=explode(' ',str_replace('0.','',microtime()));
  498. $m=sprintf('%05d',$m/1000);
  499. return $prefix.date('ymdHis').$m.mt_rand(100,999);
  500. }
  501. function tm(){
  502. static $ins;
  503. if(!$ins) {
  504. $key = config('site.tmap_key');
  505. $ins = TencentMap::instance();
  506. $ins->setKey($key);
  507. }
  508. return $ins;
  509. }
  510. function dd(...$params){
  511. foreach ($params as $param){
  512. dump($param);
  513. }
  514. exit;
  515. }
  516. function ll_distance($lng1, $lat1, $lng2, $lat2) {
  517. // 将角度转为狐度
  518. $radLat1 = deg2rad($lat1); //deg2rad()函数将角度转换为弧度
  519. $radLat2 = deg2rad($lat2);
  520. $radLng1 = deg2rad($lng1);
  521. $radLng2 = deg2rad($lng2);
  522. $a = $radLat1 - $radLat2;
  523. $b = $radLng1 - $radLng2;
  524. $s = 2 * asin(sqrt(pow(sin($a / 2), 2) + cos($radLat1) * cos($radLat2) * pow(sin($b / 2), 2))) * 6378.137;
  525. return bcadd(0,$s,2);
  526. }
  527. function user_log($dir,$content){
  528. $log_dir=RUNTIME_PATH.'/'.$dir;
  529. if(!is_dir($log_dir)){
  530. mkdir($log_dir,0777,true);
  531. }
  532. $filename=date('Y-m-d').'.log';
  533. if(is_array($content)){
  534. $content=json_encode($content,JSON_UNESCAPED_UNICODE);
  535. }
  536. file_put_contents($log_dir.'/'.$filename,date('Y-m-d H:i:s ').$content.PHP_EOL,FILE_APPEND);
  537. }
  538. function from($var){
  539. return is_object($var)?clone $var:$var;
  540. }
  541. /**
  542. *@return Redis|object
  543. */
  544. function redis(){
  545. return \think\Cache::store('redis')->handler();
  546. }
  547. function h5_link($path=''){
  548. return request()->domain().'/build/#/'.$path;
  549. }
  550. function buildUrl($url){
  551. $params=input();
  552. unset($params['page']);
  553. $urlParams=parse_url($url,PHP_URL_QUERY);
  554. parse_str($urlParams,$urlParamsArr);
  555. $params=array_merge($urlParamsArr?:[],$params);
  556. if(strpos($url,'?')===false){
  557. return sprintf("%s?%s",$url,http_build_query($params));
  558. }else{
  559. return sprintf("%s?%s",explode('?',$url)[0],http_build_query($params));
  560. }
  561. }
  562. #分站ID
  563. function getChanId(){
  564. return getSub()->getAdminId()?:0;
  565. }
  566. #分站
  567. function getSub(){
  568. $id=input('chanId');
  569. return SubService::instance($id,'api');
  570. }
  571. function cache_simple(){
  572. $instance=null;
  573. if(is_null($instance)){
  574. $pool = new RedisCachePool(Cache::store('redis')->handler());
  575. $instance = new SimpleCacheBridge($pool);
  576. }
  577. return $instance;
  578. }
  579. function es(){
  580. static $es;
  581. if(!$es){
  582. $es= ClientBuilder::create()->build();
  583. }
  584. return $es;
  585. }
  586. function _makeKsSgin($query, $postData) {
  587. unset($query['access_token']);
  588. $arr = array_merge($query, $postData);
  589. foreach ($arr as $k => $item) {
  590. if (empty($item)) {
  591. unset($arr[$k]);
  592. }
  593. }
  594. ksort($arr, 2);
  595. $str = '';
  596. foreach ($arr as $k => $v) {
  597. $str .= $k . '=' . $v . '&';
  598. }
  599. $str = substr($str, 0, strlen($str) - 1);
  600. $md5 = $str . config('kuaishou.appsecret');
  601. return md5($md5);
  602. }
  603. function jsonPost($url, $data = NULL, $times = 0) {
  604. $curl = curl_init();
  605. curl_setopt($curl, CURLOPT_URL, $url);
  606. curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
  607. curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, false);
  608. curl_setopt($curl, CURLOPT_POST, 1);
  609. curl_setopt($curl, CURLOPT_TIMEOUT, 2); //超时时间2秒
  610. curl_setopt($curl, CURLOPT_POSTFIELDS, $data);
  611. curl_setopt($curl, CURLOPT_HEADER, 0);
  612. curl_setopt($curl, CURLOPT_HTTPHEADER, array(
  613. 'Content-Type: application/json; charset=utf-8',
  614. 'Content-Length:' . strlen($data),
  615. 'Cache-Control: no-cache',
  616. 'Pragma: no-cache'
  617. ));
  618. curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
  619. $res = curl_exec($curl);
  620. curl_close($curl);
  621. return $res;
  622. }
  623. function httpCurlPost($url, $data, $times = 1) {
  624. $curl = curl_init();
  625. // 启动一个CURL会话
  626. curl_setopt($curl, CURLOPT_URL, $url);
  627. // 要访问的地址
  628. curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, 0);
  629. // 对认证证书来源的检测
  630. curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, 2);
  631. // 从证书中检查SSL加密算法是否存在
  632. curl_setopt($curl, CURLOPT_HTTPHEADER, array('Expect:'));
  633. //解决数据包大不能提交
  634. curl_setopt($curl, CURLOPT_FOLLOWLOCATION, 1);
  635. // 使用自动跳转
  636. curl_setopt($curl, CURLOPT_AUTOREFERER, 1);
  637. // 自动设置Referer
  638. curl_setopt($curl, CURLOPT_POST, 1);
  639. // 发送一个常规的Post请求
  640. curl_setopt($curl, CURLOPT_POSTFIELDS, $data);
  641. // Post提交的数据包
  642. curl_setopt($curl, CURLOPT_TIMEOUT, 30);
  643. // 设置超时限制防止死循
  644. curl_setopt($curl, CURLOPT_HEADER, 0);
  645. // 显示返回的Header区域内容
  646. curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
  647. // 获取的信息以文件流的形式返回
  648. $tmpInfo = curl_exec($curl);
  649. // 执行操作
  650. curl_close($curl);
  651. // 关键CURL会话
  652. return $tmpInfo;
  653. // 返回数据
  654. }
  655. /**
  656. * 获取指定key的值
  657. *
  658. * @param [type] $array
  659. * @param [type] $keys
  660. * @return void
  661. */
  662. function array_only($array, $keys)
  663. {
  664. return array_intersect_key($array, array_flip((array)$keys));
  665. }
  666. /**
  667. * 写入日志
  668. *
  669. * @param mixed $data
  670. *
  671. * @return void
  672. */
  673. function common_log($data = '', Throwable $e = null, $channel = 'message')
  674. {
  675. if ($e && is_string($data)) {
  676. if ($e instanceof HttpResponseException) {
  677. $str = $e->getResponse()->getContent();
  678. $arr = json_decode($str, true);
  679. $message = $arr['msg'] ?? '';
  680. } else {
  681. $message = $e->getMessage();
  682. }
  683. $data .= ' 错误原因为: ' . $message . ' | 错误位置在 ' . $e->getFile() . ' 第' . $e->getLine() . '行';
  684. }
  685. Log::write($data, $channel);
  686. }