common.php 21 KB

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