common.php 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863
  1. <?php
  2. // 公共助手函数
  3. use Symfony\Component\VarExporter\VarExporter;
  4. use think\exception\HttpResponseException;
  5. use think\Response;
  6. if (!function_exists('__')) {
  7. /**
  8. * 获取语言变量值
  9. * @param string $name 语言变量名
  10. * @param array $vars 动态变量值
  11. * @param string $lang 语言
  12. * @return mixed
  13. */
  14. function __($name, $vars = [], $lang = '')
  15. {
  16. if (is_numeric($name) || !$name) {
  17. return $name;
  18. }
  19. if (!is_array($vars)) {
  20. $vars = func_get_args();
  21. array_shift($vars);
  22. $lang = '';
  23. }
  24. return \think\Lang::get($name, $vars, $lang);
  25. }
  26. }
  27. if (!function_exists('format_bytes')) {
  28. /**
  29. * 将字节转换为可读文本
  30. * @param int $size 大小
  31. * @param string $delimiter 分隔符
  32. * @param int $precision 小数位数
  33. * @return string
  34. */
  35. function format_bytes($size, $delimiter = '', $precision = 2)
  36. {
  37. $units = array('B', 'KB', 'MB', 'GB', 'TB', 'PB');
  38. for ($i = 0; $size >= 1024 && $i < 6; $i++) {
  39. $size /= 1024;
  40. }
  41. return round($size, $precision) . $delimiter . $units[$i];
  42. }
  43. }
  44. if (!function_exists('datetime')) {
  45. /**
  46. * 将时间戳转换为日期时间
  47. * @param int $time 时间戳
  48. * @param string $format 日期时间格式
  49. * @return string
  50. */
  51. function datetime($time, $format = 'Y-m-d H:i:s')
  52. {
  53. $time = is_numeric($time) ? $time : strtotime($time);
  54. return date($format, $time);
  55. }
  56. }
  57. if (!function_exists('human_date')) {
  58. /**
  59. * 获取语义化时间
  60. * @param int $time 时间
  61. * @param int $local 本地时间
  62. * @return string
  63. */
  64. function human_date($time, $local = null)
  65. {
  66. return \fast\Date::human($time, $local);
  67. }
  68. }
  69. if (!function_exists('cdnurl')) {
  70. /**
  71. * 获取上传资源的CDN的地址
  72. * @param string $url 资源相对地址
  73. * @param boolean $domain 是否显示域名 或者直接传入域名
  74. * @return string
  75. */
  76. function cdnurl($url, $domain = false)
  77. {
  78. $regex = "/^((?:[a-z]+:)?\/\/|data:image\/)(.*)/i";
  79. $cdnurl = \think\Config::get('upload.cdnurl');
  80. $url = preg_match($regex, $url) || ($cdnurl && stripos($url, $cdnurl) === 0) ? $url : $cdnurl . $url;
  81. if ($domain && !preg_match($regex, $url)) {
  82. $domain = is_bool($domain) ? request()->domain() : $domain;
  83. $url = $domain . $url;
  84. }
  85. return $url;
  86. }
  87. }
  88. if (!function_exists('is_really_writable')) {
  89. /**
  90. * 判断文件或文件夹是否可写
  91. * @param string $file 文件或目录
  92. * @return bool
  93. */
  94. function is_really_writable($file)
  95. {
  96. if (DIRECTORY_SEPARATOR === '/') {
  97. return is_writable($file);
  98. }
  99. if (is_dir($file)) {
  100. $file = rtrim($file, '/') . '/' . md5(mt_rand());
  101. if (($fp = @fopen($file, 'ab')) === false) {
  102. return false;
  103. }
  104. fclose($fp);
  105. @chmod($file, 0777);
  106. @unlink($file);
  107. return true;
  108. } elseif (!is_file($file) or ($fp = @fopen($file, 'ab')) === false) {
  109. return false;
  110. }
  111. fclose($fp);
  112. return true;
  113. }
  114. }
  115. if (!function_exists('rmdirs')) {
  116. /**
  117. * 删除文件夹
  118. * @param string $dirname 目录
  119. * @param bool $withself 是否删除自身
  120. * @return boolean
  121. */
  122. function rmdirs($dirname, $withself = true)
  123. {
  124. if (!is_dir($dirname)) {
  125. return false;
  126. }
  127. $files = new RecursiveIteratorIterator(
  128. new RecursiveDirectoryIterator($dirname, RecursiveDirectoryIterator::SKIP_DOTS),
  129. RecursiveIteratorIterator::CHILD_FIRST
  130. );
  131. foreach ($files as $fileinfo) {
  132. $todo = ($fileinfo->isDir() ? 'rmdir' : 'unlink');
  133. $todo($fileinfo->getRealPath());
  134. }
  135. if ($withself) {
  136. @rmdir($dirname);
  137. }
  138. return true;
  139. }
  140. }
  141. if (!function_exists('copydirs')) {
  142. /**
  143. * 复制文件夹
  144. * @param string $source 源文件夹
  145. * @param string $dest 目标文件夹
  146. */
  147. function copydirs($source, $dest)
  148. {
  149. if (!is_dir($dest)) {
  150. mkdir($dest, 0755, true);
  151. }
  152. foreach (
  153. $iterator = new RecursiveIteratorIterator(
  154. new RecursiveDirectoryIterator($source, RecursiveDirectoryIterator::SKIP_DOTS),
  155. RecursiveIteratorIterator::SELF_FIRST
  156. ) as $item
  157. ) {
  158. if ($item->isDir()) {
  159. $sontDir = $dest . DS . $iterator->getSubPathName();
  160. if (!is_dir($sontDir)) {
  161. mkdir($sontDir, 0755, true);
  162. }
  163. } else {
  164. copy($item, $dest . DS . $iterator->getSubPathName());
  165. }
  166. }
  167. }
  168. }
  169. if (!function_exists('mb_ucfirst')) {
  170. function mb_ucfirst($string)
  171. {
  172. return mb_strtoupper(mb_substr($string, 0, 1)) . mb_strtolower(mb_substr($string, 1));
  173. }
  174. }
  175. if (!function_exists('addtion')) {
  176. /**
  177. * 附加关联字段数据
  178. * @param array $items 数据列表
  179. * @param mixed $fields 渲染的来源字段
  180. * @return array
  181. */
  182. function addtion($items, $fields)
  183. {
  184. if (!$items || !$fields) {
  185. return $items;
  186. }
  187. $fieldsArr = [];
  188. if (!is_array($fields)) {
  189. $arr = explode(',', $fields);
  190. foreach ($arr as $k => $v) {
  191. $fieldsArr[$v] = ['field' => $v];
  192. }
  193. } else {
  194. foreach ($fields as $k => $v) {
  195. if (is_array($v)) {
  196. $v['field'] = isset($v['field']) ? $v['field'] : $k;
  197. } else {
  198. $v = ['field' => $v];
  199. }
  200. $fieldsArr[$v['field']] = $v;
  201. }
  202. }
  203. foreach ($fieldsArr as $k => &$v) {
  204. $v = is_array($v) ? $v : ['field' => $v];
  205. $v['display'] = isset($v['display']) ? $v['display'] : str_replace(['_ids', '_id'], ['_names', '_name'], $v['field']);
  206. $v['primary'] = isset($v['primary']) ? $v['primary'] : '';
  207. $v['column'] = isset($v['column']) ? $v['column'] : 'name';
  208. $v['model'] = isset($v['model']) ? $v['model'] : '';
  209. $v['table'] = isset($v['table']) ? $v['table'] : '';
  210. $v['name'] = isset($v['name']) ? $v['name'] : str_replace(['_ids', '_id'], '', $v['field']);
  211. }
  212. unset($v);
  213. $ids = [];
  214. $fields = array_keys($fieldsArr);
  215. foreach ($items as $k => $v) {
  216. foreach ($fields as $m => $n) {
  217. if (isset($v[$n])) {
  218. $ids[$n] = array_merge(isset($ids[$n]) && is_array($ids[$n]) ? $ids[$n] : [], explode(',', $v[$n]));
  219. }
  220. }
  221. }
  222. $result = [];
  223. foreach ($fieldsArr as $k => $v) {
  224. if ($v['model']) {
  225. $model = new $v['model'];
  226. } else {
  227. $model = $v['name'] ? \think\Db::name($v['name']) : \think\Db::table($v['table']);
  228. }
  229. $primary = $v['primary'] ? $v['primary'] : $model->getPk();
  230. $result[$v['field']] = isset($ids[$v['field']]) ? $model->where($primary, 'in', $ids[$v['field']])->column("{$primary},{$v['column']}") : [];
  231. }
  232. foreach ($items as $k => &$v) {
  233. foreach ($fields as $m => $n) {
  234. if (isset($v[$n])) {
  235. $curr = array_flip(explode(',', $v[$n]));
  236. $v[$fieldsArr[$n]['display']] = implode(',', array_intersect_key($result[$n], $curr));
  237. }
  238. }
  239. }
  240. return $items;
  241. }
  242. }
  243. if (!function_exists('var_export_short')) {
  244. /**
  245. * 使用短标签打印或返回数组结构
  246. * @param mixed $data
  247. * @param boolean $return 是否返回数据
  248. * @return string
  249. */
  250. function var_export_short($data, $return = true)
  251. {
  252. return var_export($data, $return);
  253. $replaced = [];
  254. $count = 0;
  255. //判断是否是对象
  256. if (is_resource($data) || is_object($data)) {
  257. return var_export($data, $return);
  258. }
  259. //判断是否有特殊的键名
  260. $specialKey = false;
  261. array_walk_recursive($data, function (&$value, &$key) use (&$specialKey) {
  262. if (is_string($key) && (stripos($key, "\n") !== false || stripos($key, "array (") !== false)) {
  263. $specialKey = true;
  264. }
  265. });
  266. if ($specialKey) {
  267. return var_export($data, $return);
  268. }
  269. array_walk_recursive($data, function (&$value, &$key) use (&$replaced, &$count, &$stringcheck) {
  270. if (is_object($value) || is_resource($value)) {
  271. $replaced[$count] = var_export($value, true);
  272. $value = "##<{$count}>##";
  273. } else {
  274. if (is_string($value) && (stripos($value, "\n") !== false || stripos($value, "array (") !== false)) {
  275. $index = array_search($value, $replaced);
  276. if ($index === false) {
  277. $replaced[$count] = var_export($value, true);
  278. $value = "##<{$count}>##";
  279. } else {
  280. $value = "##<{$index}>##";
  281. }
  282. }
  283. }
  284. $count++;
  285. });
  286. $dump = var_export($data, true);
  287. $dump = preg_replace('#(?:\A|\n)([ ]*)array \(#i', '[', $dump); // Starts
  288. $dump = preg_replace('#\n([ ]*)\),#', "\n$1],", $dump); // Ends
  289. $dump = preg_replace('#=> \[\n\s+\],\n#', "=> [],\n", $dump); // Empties
  290. $dump = preg_replace('#\)$#', "]", $dump); //End
  291. if ($replaced) {
  292. $dump = preg_replace_callback("/'##<(\d+)>##'/", function ($matches) use ($replaced) {
  293. return isset($replaced[$matches[1]]) ? $replaced[$matches[1]] : "''";
  294. }, $dump);
  295. }
  296. if ($return === true) {
  297. return $dump;
  298. } else {
  299. echo $dump;
  300. }
  301. }
  302. }
  303. if (!function_exists('letter_avatar')) {
  304. /**
  305. * 首字母头像
  306. * @param $text
  307. * @return string
  308. */
  309. function letter_avatar($text)
  310. {
  311. $total = unpack('L', hash('adler32', $text, true))[1];
  312. $hue = $total % 360;
  313. list($r, $g, $b) = hsv2rgb($hue / 360, 0.3, 0.9);
  314. $bg = "rgb({$r},{$g},{$b})";
  315. $color = "#ffffff";
  316. $first = mb_strtoupper(mb_substr($text, 0, 1));
  317. $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>');
  318. $value = 'data:image/svg+xml;base64,' . $src;
  319. return $value;
  320. }
  321. }
  322. if (!function_exists('hsv2rgb')) {
  323. function hsv2rgb($h, $s, $v)
  324. {
  325. $r = $g = $b = 0;
  326. $i = floor($h * 6);
  327. $f = $h * 6 - $i;
  328. $p = $v * (1 - $s);
  329. $q = $v * (1 - $f * $s);
  330. $t = $v * (1 - (1 - $f) * $s);
  331. switch ($i % 6) {
  332. case 0:
  333. $r = $v;
  334. $g = $t;
  335. $b = $p;
  336. break;
  337. case 1:
  338. $r = $q;
  339. $g = $v;
  340. $b = $p;
  341. break;
  342. case 2:
  343. $r = $p;
  344. $g = $v;
  345. $b = $t;
  346. break;
  347. case 3:
  348. $r = $p;
  349. $g = $q;
  350. $b = $v;
  351. break;
  352. case 4:
  353. $r = $t;
  354. $g = $p;
  355. $b = $v;
  356. break;
  357. case 5:
  358. $r = $v;
  359. $g = $p;
  360. $b = $q;
  361. break;
  362. }
  363. return [
  364. floor($r * 255),
  365. floor($g * 255),
  366. floor($b * 255)
  367. ];
  368. }
  369. }
  370. if (!function_exists('check_nav_active')) {
  371. /**
  372. * 检测会员中心导航是否高亮
  373. */
  374. function check_nav_active($url, $classname = 'active')
  375. {
  376. $auth = \app\common\library\Auth::instance();
  377. $requestUrl = $auth->getRequestUri();
  378. $url = ltrim($url, '/');
  379. return $requestUrl === str_replace(".", "/", $url) ? $classname : '';
  380. }
  381. }
  382. if (!function_exists('check_cors_request')) {
  383. /**
  384. * 跨域检测
  385. */
  386. function check_cors_request()
  387. {
  388. if (isset($_SERVER['HTTP_ORIGIN']) && $_SERVER['HTTP_ORIGIN']) {
  389. $info = parse_url($_SERVER['HTTP_ORIGIN']);
  390. $domainArr = explode(',', config('fastadmin.cors_request_domain'));
  391. $domainArr[] = request()->host(true);
  392. if (in_array("*", $domainArr) || in_array($_SERVER['HTTP_ORIGIN'], $domainArr) || (isset($info['host']) && in_array($info['host'], $domainArr))) {
  393. header("Access-Control-Allow-Origin: " . $_SERVER['HTTP_ORIGIN']);
  394. } else {
  395. $response = Response::create('跨域检测无效', 'html', 403);
  396. throw new HttpResponseException($response);
  397. }
  398. header('Access-Control-Allow-Credentials: true');
  399. header('Access-Control-Max-Age: 86400');
  400. if ($_SERVER['REQUEST_METHOD'] == 'OPTIONS') {
  401. if (isset($_SERVER['HTTP_ACCESS_CONTROL_REQUEST_METHOD'])) {
  402. header("Access-Control-Allow-Methods: GET, POST, PUT, DELETE, OPTIONS");
  403. }
  404. if (isset($_SERVER['HTTP_ACCESS_CONTROL_REQUEST_HEADERS'])) {
  405. header("Access-Control-Allow-Headers: {$_SERVER['HTTP_ACCESS_CONTROL_REQUEST_HEADERS']}");
  406. }
  407. $response = Response::create('', 'html');
  408. throw new HttpResponseException($response);
  409. }
  410. }
  411. }
  412. }
  413. if (!function_exists('xss_clean')) {
  414. /**
  415. * 清理XSS
  416. */
  417. function xss_clean($content, $is_image = false)
  418. {
  419. return \app\common\library\Security::instance()->xss_clean($content, $is_image);
  420. }
  421. }
  422. if (!function_exists('check_ip_allowed')) {
  423. /**
  424. * 检测IP是否允许
  425. * @param string $ip IP地址
  426. */
  427. function check_ip_allowed($ip = null)
  428. {
  429. $ip = is_null($ip) ? request()->ip() : $ip;
  430. $forbiddenipArr = config('site.forbiddenip');
  431. $forbiddenipArr = !$forbiddenipArr ? [] : $forbiddenipArr;
  432. $forbiddenipArr = is_array($forbiddenipArr) ? $forbiddenipArr : array_filter(explode("\n", str_replace("\r\n", "\n", $forbiddenipArr)));
  433. if ($forbiddenipArr && \Symfony\Component\HttpFoundation\IpUtils::checkIp($ip, $forbiddenipArr)) {
  434. $response = Response::create('请求无权访问', 'html', 403);
  435. throw new HttpResponseException($response);
  436. }
  437. }
  438. }
  439. //结果集信息里,生日转换年龄
  440. function list_birthday_age($list){
  441. if(!$list || empty($list)){
  442. return $list;
  443. }
  444. foreach($list as $vo => $info){
  445. $list[$vo]['age'] = birthtime_to_age($info['birthday']);
  446. }
  447. return $list;
  448. }
  449. //结果集信息里,多个字段需要增加domain_cdnurl
  450. function list_domain_image($list,$field){
  451. if(!$list || empty($list)){
  452. return $list;
  453. }
  454. foreach($list as $vo => $info){
  455. $list[$vo] = info_domain_image($info,$field);
  456. }
  457. return $list;
  458. }
  459. //单条信息里,多个字段需要增加domain_cdnurl
  460. //支持image,images
  461. function info_domain_image($data,$field){
  462. if(!$data || empty($data)){
  463. return $data;
  464. }
  465. foreach($data as $key => $val){
  466. if(in_array($key,$field)){
  467. $more = strpos($key,'images');
  468. $data[$key] = one_domain_image($val,$more);
  469. }
  470. }
  471. return $data;
  472. }
  473. //支持单个字段,需要增加domain_cdnurl
  474. //支持image,images
  475. function one_domain_image($one,$more = false){
  476. if(!$one){
  477. return $one;
  478. }
  479. if(strpos($one,',') || $more !== false){
  480. //逗号隔开的多个图片
  481. $one = explode(',',$one);
  482. foreach($one as $k => $v){
  483. $one[$k] = localpath_to_netpath($v);
  484. }
  485. $one = implode(',',$one);
  486. }else{
  487. $one = localpath_to_netpath($one);
  488. }
  489. return $one;
  490. }
  491. //本地地址转换为网络地址
  492. function localpath_to_netpath($path)
  493. {
  494. if (empty($path)) {
  495. return '';
  496. } elseif (strrpos($path, 'http') !== false) {
  497. return $path;
  498. } else {
  499. return config('domain_cdnurl') . str_replace("\\", "/", $path);
  500. }
  501. }
  502. //秒 转换 日月分
  503. function Sec2Time($time){
  504. if(is_numeric($time)){
  505. $value = array(
  506. 'years' => 0, 'days' => 0, 'hours' => 0,
  507. 'minutes' => 0, 'seconds' => 0,
  508. );
  509. /*if($time >= 31556926){
  510. $value['years'] = floor($time/31556926);
  511. $time = ($time%31556926);
  512. }*/
  513. if($time >= 86400){
  514. $value['days'] = floor($time/86400);
  515. $time = ($time%86400);
  516. }
  517. if($time >= 3600){
  518. $value['hours'] = floor($time/3600);
  519. $time = ($time%3600);
  520. }
  521. if($time >= 60){
  522. $value['minutes'] = floor($time/60);
  523. $time = ($time%60);
  524. }
  525. $value['seconds'] = floor($time);
  526. //return (array) $value;
  527. //$t=$value['years'] .'年'. $value['days'] .'天'.' '. $value['hours'] .'小时'. $value['minutes'] .'分'.$value['seconds'].'秒';
  528. $t = $value['days'] .'天' . $value['hours'] .'小时'. $value['minutes'] .'分';
  529. return $t;
  530. }else{
  531. return '0天';
  532. }
  533. }
  534. //生日转年龄
  535. function birthtime_to_age($birthtime){
  536. // $birthtime = strtotime('1990-11-06');
  537. if(!$birthtime){
  538. return 0;
  539. }
  540. list($y1,$m1,$d1) = explode("-",date("Y-m-d",$birthtime));
  541. list($y2,$m2,$d2) = explode("-",date("Y-m-d",time()));
  542. $age = $y2 - $y1;
  543. if((int)($m2.$d2) < (int)($m1.$d1))
  544. {$age -= 1;}
  545. if($age < 0){
  546. $age = 0;
  547. }
  548. return $age;
  549. }
  550. if(!function_exists('mk_dir')) {
  551. /**
  552. * 新建目录
  553. */
  554. function mk_dir($dir, $mode = 0770, $tmp = true)
  555. {
  556. $mode = 0770;
  557. if(is_file($dir)) {
  558. //有同名文件
  559. return false;
  560. } else {
  561. if(!is_dir($dir)) { //目录不存在
  562. $dir_up = dirname($dir); //上级目录
  563. if(!is_dir($dir_up)) {
  564. //上级不存在
  565. $rs = @mk_dir($dir_up);
  566. if(!$rs) return false;
  567. }
  568. $rs = @mkdir($dir, $mode); //新建
  569. if(!$rs) return false;
  570. $rs = @chmod($dir, $mode); //改权限
  571. if(!$rs) return false;
  572. }
  573. return true;
  574. }
  575. }
  576. }
  577. /**
  578. * 在线支付日志
  579. */
  580. function filePut($info,$text='notify.txt'){
  581. if(is_array($info)) {
  582. $info = json_encode($info, JSON_UNESCAPED_UNICODE);
  583. }
  584. if(!file_exist(RUNTIME_PATH.'paylog/')) {
  585. mk_dir(RUNTIME_PATH.'paylog/');
  586. }
  587. $file = RUNTIME_PATH.'paylog/'.$text;
  588. touch_file($file);
  589. if(filesize($file)>5242880)//大于5M自动切换
  590. {
  591. rename($file, $file.'notify_'.date('Y_m_d_H_i_s').'.txt');
  592. }
  593. touch_file($file);
  594. file_put_contents($file, "\r\n".date('Y-m-d H:i:s').' '.$info, FILE_APPEND);
  595. }
  596. if(!function_exists('touch_file')) {
  597. /**
  598. * 新建文件
  599. */
  600. function touch_file($file = '')
  601. {
  602. if($file) {
  603. if(!file_exists($file)) {
  604. @touch($file);
  605. @chmod($file, 0770);
  606. }
  607. }
  608. }
  609. }
  610. if(!function_exists('file_exist')) {
  611. /**
  612. * 检测文件是否存在
  613. * @param $file
  614. * @return string
  615. */
  616. function file_exist($file)
  617. {
  618. if(false === strpos($file, 'http')) { //本地文件
  619. if(0 === strpos($file, '/upload')) {
  620. $file = '.'.$file;
  621. }
  622. return file_exists($file);
  623. } else { //网络文件
  624. $ch = curl_init();
  625. curl_setopt($ch, CURLOPT_URL, $file);
  626. curl_setopt($ch, CURLOPT_TIMEOUT, 2);
  627. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  628. curl_exec($ch);
  629. $status = curl_getinfo($ch,CURLINFO_HTTP_CODE);
  630. curl_close($ch);
  631. if(in_array(substr($status, 0, 1), [2, 3])) {
  632. return true;
  633. } else {
  634. return false;
  635. }
  636. }
  637. }
  638. }
  639. /**
  640. * 发起HTTPS请求
  641. */
  642. function curl_post($url, $data, $header = '', $timeOut = 0)
  643. {
  644. //初始化curl
  645. $ch = curl_init();
  646. //参数设置
  647. curl_setopt($ch, CURLOPT_URL, $url);
  648. curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE);
  649. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
  650. curl_setopt($ch, CURLOPT_TIMEOUT, $timeOut);
  651. curl_setopt($ch, CURLOPT_HEADER, 0);
  652. curl_setopt($ch, CURLOPT_POST, 1);
  653. curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
  654. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  655. if($header != '') {
  656. curl_setopt($ch, CURLOPT_HTTPHEADER, $header);
  657. }
  658. $result = curl_exec($ch);
  659. //连接失败
  660. if($result == FALSE) {
  661. //\think\Log::record('[ CURL ] ERROR ' . curl_error($ch)."\n".var_export(debug_backtrace(), true)."\n", 'error');
  662. }
  663. curl_close($ch);
  664. return $result;
  665. }
  666. /**
  667. * 发起HTTP GET请求
  668. */
  669. function curl_get($url,$header = '')
  670. {
  671. $oCurl = curl_init();
  672. if(stripos($url, "https://") !== FALSE) {
  673. curl_setopt($oCurl, CURLOPT_SSL_VERIFYPEER, FALSE);
  674. curl_setopt($oCurl, CURLOPT_SSL_VERIFYHOST, FALSE);
  675. curl_setopt($oCurl, CURLOPT_SSLVERSION, 1); //CURL_SSLVERSION_TLSv1
  676. }
  677. curl_setopt($oCurl, CURLOPT_TIMEOUT, 3);
  678. curl_setopt($oCurl, CURLOPT_URL, $url);
  679. curl_setopt($oCurl, CURLOPT_RETURNTRANSFER, 1);
  680. if($header != '') {
  681. curl_setopt($oCurl, CURLOPT_HTTPHEADER, $header);
  682. }
  683. $sContent = curl_exec($oCurl);
  684. $aStatus = curl_getinfo($oCurl);
  685. $error = curl_error($oCurl);
  686. curl_close($oCurl);
  687. if($error) {
  688. $sContent = file_get_contents($url);
  689. return $sContent;
  690. }
  691. if(intval($aStatus["http_code"]) == 200) {
  692. return $sContent;
  693. } else {
  694. return false;
  695. }
  696. }
  697. //创建订单号
  698. function createUniqueNo($prifix = 'P',$id = 0)
  699. {
  700. $s = 0;
  701. $ms = 0;
  702. list($ms, $s) = explode(' ', microtime());
  703. $ms = substr($ms, 2, 6); //获取微妙
  704. $rt = $prifix.date('ymdHis', $s).$ms.$id; //年月日时分秒.用户id对10取余.微秒
  705. return $rt;
  706. }
  707. /**
  708. * 时间转换
  709. * @param null $time
  710. * @return false|string
  711. */
  712. function get_last_time($time = NULL) {
  713. $text = '';
  714. $nowtime = time();
  715. $time = ($time === NULL || empty($time) || $time > $nowtime) ? $nowtime : intval($time);
  716. $t = $nowtime - $time; //时间差 (秒)
  717. $y = date('Y', $time)-date('Y', $nowtime);//是否跨年
  718. switch($t){
  719. /*case $t = 0:
  720. $text = '刚刚';
  721. break;*/
  722. case $t < 60:
  723. $text = $t . '秒前'; // 一分钟内
  724. break;
  725. case $t < 60 * 60:
  726. $text = floor($t / 60) . '分钟前'; //一小时内
  727. break;
  728. case $t < 60 * 60 * 24:
  729. $text = floor($t / (60 * 60)) . '小时前'; // 一天内
  730. break;
  731. case $t < 60 * 60 * 24 * 3:
  732. $text = floor($time/(60*60*24)) ==1 ?'昨天 ' . date('H:i', $time) : '前天 ' . date('H:i', $time) ; //昨天和前天
  733. break;
  734. case $t < 60 * 60 * 24 * 30:
  735. $text = date('m月d日 H:i', $time); //一个月内
  736. break;
  737. case $t < 60 * 60 * 24 * 365&&$y==0:
  738. $text = date('m月d日', $time); //一年内
  739. break;
  740. default:
  741. $text = date('Y年m月d日', $time); //一年以前
  742. break;
  743. }
  744. return $text;
  745. }
  746. //post接收参数中心,只接非必须
  747. function request_post_hub($field_array = [],$required = [],$noempty = []){
  748. if(empty($field_array)){
  749. return [];
  750. }
  751. $data = [];
  752. foreach($field_array as $key => $field){
  753. //接收
  754. if(!request()->has($field,'post')){
  755. continue;
  756. }
  757. $newone = request()->post($field);
  758. //追加
  759. $data[$field] = $newone;
  760. }
  761. //必传
  762. if(!empty($required)){
  763. foreach($required as $k => $mustone){
  764. if(!isset($data[$mustone])){
  765. return $mustone.' required';
  766. }
  767. }
  768. }
  769. //必传,且不能空
  770. if(!empty($noempty)){
  771. foreach($noempty as $havekey => $haveone){
  772. if(!isset($data[$havekey]) || empty($data[$havekey])){
  773. return $haveone.' 必填';
  774. }
  775. }
  776. }
  777. return $data;
  778. }
  779. if (!function_exists('httpurllocal')) {
  780. /**
  781. * 判断当前url是否为全路径,并返回全路径
  782. */
  783. function httpurllocal($path) {
  784. if(!$path) return $path;
  785. $host = $_SERVER["REQUEST_SCHEME"]."://".$_SERVER["HTTP_HOST"];
  786. // 获取当前域名
  787. if(strpos($path,'http://') === false && strpos($path,'https://') === false) {
  788. $url = $host.$path;
  789. } else {
  790. $url = $path;
  791. }
  792. return $url;
  793. }
  794. }