common.php 39 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078
  1. <?php
  2. // 公共助手函数
  3. use think\exception\HttpResponseException;
  4. use think\Response;
  5. use fast\Random;
  6. if (!function_exists('__')) {
  7. /**
  8. * 获取语言变量值
  9. * @param string $name 语言变量名
  10. * @param string | 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 < 5; $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. if (is_bool($domain) || stripos($cdnurl, '/') === 0) {
  81. $url = preg_match($regex, $url) || ($cdnurl && stripos($url, $cdnurl) === 0) ? $url : $cdnurl . $url;
  82. }
  83. if ($domain && !preg_match($regex, $url)) {
  84. $domain = is_bool($domain) ? request()->domain() : $domain;
  85. $url = $domain . $url;
  86. }
  87. return $url;
  88. }
  89. }
  90. /**
  91. * 自动拼im id前缀
  92. * @param $user_id
  93. * @return mixed
  94. */
  95. if (!function_exists('im_prefix')) {
  96. function im_prefix($user_id)
  97. {
  98. return config('tencent_im.chat_prefix').$user_id;
  99. }
  100. }
  101. if (!function_exists('is_really_writable')) {
  102. /**
  103. * 判断文件或文件夹是否可写
  104. * @param string $file 文件或目录
  105. * @return bool
  106. */
  107. function is_really_writable($file)
  108. {
  109. if (DIRECTORY_SEPARATOR === '/') {
  110. return is_writable($file);
  111. }
  112. if (is_dir($file)) {
  113. $file = rtrim($file, '/') . '/' . md5(mt_rand());
  114. if (($fp = @fopen($file, 'ab')) === false) {
  115. return false;
  116. }
  117. fclose($fp);
  118. @chmod($file, 0777);
  119. @unlink($file);
  120. return true;
  121. } elseif (!is_file($file) or ($fp = @fopen($file, 'ab')) === false) {
  122. return false;
  123. }
  124. fclose($fp);
  125. return true;
  126. }
  127. }
  128. if (!function_exists('rmdirs')) {
  129. /**
  130. * 删除文件夹
  131. * @param string $dirname 目录
  132. * @param bool $withself 是否删除自身
  133. * @return boolean
  134. */
  135. function rmdirs($dirname, $withself = true)
  136. {
  137. if (!is_dir($dirname)) {
  138. return false;
  139. }
  140. $files = new RecursiveIteratorIterator(
  141. new RecursiveDirectoryIterator($dirname, RecursiveDirectoryIterator::SKIP_DOTS),
  142. RecursiveIteratorIterator::CHILD_FIRST
  143. );
  144. foreach ($files as $fileinfo) {
  145. $todo = ($fileinfo->isDir() ? 'rmdir' : 'unlink');
  146. $todo($fileinfo->getRealPath());
  147. }
  148. if ($withself) {
  149. @rmdir($dirname);
  150. }
  151. return true;
  152. }
  153. }
  154. if (!function_exists('copydirs')) {
  155. /**
  156. * 复制文件夹
  157. * @param string $source 源文件夹
  158. * @param string $dest 目标文件夹
  159. */
  160. function copydirs($source, $dest)
  161. {
  162. if (!is_dir($dest)) {
  163. mkdir($dest, 0755, true);
  164. }
  165. foreach (
  166. $iterator = new RecursiveIteratorIterator(
  167. new RecursiveDirectoryIterator($source, RecursiveDirectoryIterator::SKIP_DOTS),
  168. RecursiveIteratorIterator::SELF_FIRST
  169. ) as $item
  170. ) {
  171. if ($item->isDir()) {
  172. $sontDir = $dest . DS . $iterator->getSubPathName();
  173. if (!is_dir($sontDir)) {
  174. mkdir($sontDir, 0755, true);
  175. }
  176. } else {
  177. copy($item, $dest . DS . $iterator->getSubPathName());
  178. }
  179. }
  180. }
  181. }
  182. if (!function_exists('mb_ucfirst')) {
  183. function mb_ucfirst($string)
  184. {
  185. return mb_strtoupper(mb_substr($string, 0, 1)) . mb_strtolower(mb_substr($string, 1));
  186. }
  187. }
  188. if (!function_exists('addtion')) {
  189. /**
  190. * 附加关联字段数据
  191. * @param array $items 数据列表
  192. * @param mixed $fields 渲染的来源字段
  193. * @return array
  194. */
  195. function addtion($items, $fields)
  196. {
  197. if (!$items || !$fields) {
  198. return $items;
  199. }
  200. $fieldsArr = [];
  201. if (!is_array($fields)) {
  202. $arr = explode(',', $fields);
  203. foreach ($arr as $k => $v) {
  204. $fieldsArr[$v] = ['field' => $v];
  205. }
  206. } else {
  207. foreach ($fields as $k => $v) {
  208. if (is_array($v)) {
  209. $v['field'] = $v['field'] ?? $k;
  210. } else {
  211. $v = ['field' => $v];
  212. }
  213. $fieldsArr[$v['field']] = $v;
  214. }
  215. }
  216. foreach ($fieldsArr as $k => &$v) {
  217. $v = is_array($v) ? $v : ['field' => $v];
  218. $v['display'] = $v['display'] ?? str_replace(['_ids', '_id'], ['_names', '_name'], $v['field']);
  219. $v['primary'] = $v['primary'] ?? '';
  220. $v['column'] = $v['column'] ?? 'name';
  221. $v['model'] = $v['model'] ?? '';
  222. $v['table'] = $v['table'] ?? '';
  223. $v['name'] = $v['name'] ?? str_replace(['_ids', '_id'], '', $v['field']);
  224. }
  225. unset($v);
  226. $ids = [];
  227. $fields = array_keys($fieldsArr);
  228. foreach ($items as $k => $v) {
  229. foreach ($fields as $m => $n) {
  230. if (isset($v[$n])) {
  231. $ids[$n] = array_merge(isset($ids[$n]) && is_array($ids[$n]) ? $ids[$n] : [], explode(',', $v[$n]));
  232. }
  233. }
  234. }
  235. $result = [];
  236. foreach ($fieldsArr as $k => $v) {
  237. if ($v['model']) {
  238. $model = new $v['model'];
  239. } else {
  240. // 优先判断使用table的配置
  241. $model = $v['table'] ? \think\Db::table($v['table']) : \think\Db::name($v['name']);
  242. }
  243. $primary = $v['primary'] ?: $model->getPk();
  244. $result[$v['field']] = isset($ids[$v['field']]) ? $model->where($primary, 'in', $ids[$v['field']])->column($v['column'], $primary) : [];
  245. }
  246. foreach ($items as $k => &$v) {
  247. foreach ($fields as $m => $n) {
  248. if (isset($v[$n])) {
  249. $curr = array_flip(explode(',', $v[$n]));
  250. $linedata = array_intersect_key($result[$n], $curr);
  251. $v[$fieldsArr[$n]['display']] = $fieldsArr[$n]['column'] == '*' ? $linedata : implode(',', $linedata);
  252. }
  253. }
  254. }
  255. return $items;
  256. }
  257. }
  258. if (!function_exists('var_export_short')) {
  259. /**
  260. * 使用短标签打印或返回数组结构
  261. * @param mixed $data
  262. * @param boolean $return 是否返回数据
  263. * @return string
  264. */
  265. function var_export_short($data, $return = true)
  266. {
  267. return var_export($data, $return);
  268. }
  269. }
  270. if (!function_exists('letter_avatar')) {
  271. /**
  272. * 首字母头像
  273. * @param $text
  274. * @return string
  275. */
  276. function letter_avatar($text)
  277. {
  278. $total = unpack('L', hash('adler32', $text, true))[1];
  279. $hue = $total % 360;
  280. list($r, $g, $b) = hsv2rgb($hue / 360, 0.3, 0.9);
  281. $bg = "rgb({$r},{$g},{$b})";
  282. $color = "#ffffff";
  283. $first = mb_strtoupper(mb_substr($text, 0, 1));
  284. $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>');
  285. $value = 'data:image/svg+xml;base64,' . $src;
  286. return $value;
  287. }
  288. }
  289. if (!function_exists('hsv2rgb')) {
  290. function hsv2rgb($h, $s, $v)
  291. {
  292. $r = $g = $b = 0;
  293. $i = floor($h * 6);
  294. $f = $h * 6 - $i;
  295. $p = $v * (1 - $s);
  296. $q = $v * (1 - $f * $s);
  297. $t = $v * (1 - (1 - $f) * $s);
  298. switch ($i % 6) {
  299. case 0:
  300. $r = $v;
  301. $g = $t;
  302. $b = $p;
  303. break;
  304. case 1:
  305. $r = $q;
  306. $g = $v;
  307. $b = $p;
  308. break;
  309. case 2:
  310. $r = $p;
  311. $g = $v;
  312. $b = $t;
  313. break;
  314. case 3:
  315. $r = $p;
  316. $g = $q;
  317. $b = $v;
  318. break;
  319. case 4:
  320. $r = $t;
  321. $g = $p;
  322. $b = $v;
  323. break;
  324. case 5:
  325. $r = $v;
  326. $g = $p;
  327. $b = $q;
  328. break;
  329. }
  330. return [
  331. floor($r * 255),
  332. floor($g * 255),
  333. floor($b * 255)
  334. ];
  335. }
  336. }
  337. if (!function_exists('check_nav_active')) {
  338. /**
  339. * 检测会员中心导航是否高亮
  340. */
  341. function check_nav_active($url, $classname = 'active')
  342. {
  343. $auth = \app\common\library\Auth::instance();
  344. $requestUrl = $auth->getRequestUri();
  345. $url = ltrim($url, '/');
  346. return $requestUrl === str_replace(".", "/", $url) ? $classname : '';
  347. }
  348. }
  349. if (!function_exists('check_cors_request')) {
  350. /**
  351. * 跨域检测
  352. */
  353. function check_cors_request()
  354. {
  355. if (isset($_SERVER['HTTP_ORIGIN']) && $_SERVER['HTTP_ORIGIN'] && config('fastadmin.cors_request_domain')) {
  356. $info = parse_url($_SERVER['HTTP_ORIGIN']);
  357. $domainArr = explode(',', config('fastadmin.cors_request_domain'));
  358. $domainArr[] = request()->host(true);
  359. if (in_array("*", $domainArr) || in_array($_SERVER['HTTP_ORIGIN'], $domainArr) || (isset($info['host']) && in_array($info['host'], $domainArr))) {
  360. header("Access-Control-Allow-Origin: " . $_SERVER['HTTP_ORIGIN']);
  361. } else {
  362. $response = Response::create('跨域检测无效', 'html', 403);
  363. throw new HttpResponseException($response);
  364. }
  365. header('Access-Control-Allow-Credentials: true');
  366. header('Access-Control-Max-Age: 86400');
  367. if ($_SERVER['REQUEST_METHOD'] == 'OPTIONS') {
  368. if (isset($_SERVER['HTTP_ACCESS_CONTROL_REQUEST_METHOD'])) {
  369. header("Access-Control-Allow-Methods: GET, POST, PUT, DELETE, OPTIONS");
  370. }
  371. if (isset($_SERVER['HTTP_ACCESS_CONTROL_REQUEST_HEADERS'])) {
  372. header("Access-Control-Allow-Headers: {$_SERVER['HTTP_ACCESS_CONTROL_REQUEST_HEADERS']}");
  373. }
  374. $response = Response::create('', 'html');
  375. throw new HttpResponseException($response);
  376. }
  377. }
  378. }
  379. }
  380. if (!function_exists('xss_clean')) {
  381. /**
  382. * 清理XSS
  383. */
  384. function xss_clean($content, $is_image = false)
  385. {
  386. return \app\common\library\Security::instance()->xss_clean($content, $is_image);
  387. }
  388. }
  389. if (!function_exists('url_clean')) {
  390. /**
  391. * 清理URL
  392. */
  393. function url_clean($url)
  394. {
  395. if (!check_url_allowed($url)) {
  396. return '';
  397. }
  398. return xss_clean($url);
  399. }
  400. }
  401. if (!function_exists('check_ip_allowed')) {
  402. /**
  403. * 检测IP是否允许
  404. * @param string $ip IP地址
  405. */
  406. function check_ip_allowed($ip = null)
  407. {
  408. $ip = is_null($ip) ? request()->ip() : $ip;
  409. $forbiddenipArr = config('site.forbiddenip');
  410. $forbiddenipArr = !$forbiddenipArr ? [] : $forbiddenipArr;
  411. $forbiddenipArr = is_array($forbiddenipArr) ? $forbiddenipArr : array_filter(explode("\n", str_replace("\r\n", "\n", $forbiddenipArr)));
  412. if ($forbiddenipArr && \Symfony\Component\HttpFoundation\IpUtils::checkIp($ip, $forbiddenipArr)) {
  413. $response = Response::create('请求无权访问', 'html', 403);
  414. throw new HttpResponseException($response);
  415. }
  416. }
  417. }
  418. if (!function_exists('check_url_allowed')) {
  419. /**
  420. * 检测URL是否允许
  421. * @param string $url URL
  422. * @return bool
  423. */
  424. function check_url_allowed($url = '')
  425. {
  426. //允许的主机列表
  427. $allowedHostArr = [
  428. strtolower(request()->host())
  429. ];
  430. if (empty($url)) {
  431. return true;
  432. }
  433. //如果是站内相对链接则允许
  434. if (preg_match("/^[\/a-z][a-z0-9][a-z0-9\.\/]+((\?|#).*)?\$/i", $url) && substr($url, 0, 2) !== '//') {
  435. return true;
  436. }
  437. //如果是站外链接则需要判断HOST是否允许
  438. if (preg_match("/((http[s]?:\/\/)+((?>[a-z\-0-9]{2,}\.)+[a-z]{2,8}|((?>([0-9]{1,3}\.)){3}[0-9]{1,3}))(:[0-9]{1,5})?)(?:\s|\/)/i", $url)) {
  439. $chkHost = parse_url(strtolower($url), PHP_URL_HOST);
  440. if ($chkHost && in_array($chkHost, $allowedHostArr)) {
  441. return true;
  442. }
  443. }
  444. return false;
  445. }
  446. }
  447. if (!function_exists('build_suffix_image')) {
  448. /**
  449. * 生成文件后缀图片
  450. * @param string $suffix 后缀
  451. * @param null $background
  452. * @return string
  453. */
  454. function build_suffix_image($suffix, $background = null)
  455. {
  456. $suffix = mb_substr(strtoupper($suffix), 0, 4);
  457. $total = unpack('L', hash('adler32', $suffix, true))[1];
  458. $hue = $total % 360;
  459. list($r, $g, $b) = hsv2rgb($hue / 360, 0.3, 0.9);
  460. $background = $background ? $background : "rgb({$r},{$g},{$b})";
  461. $icon = <<<EOT
  462. <svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
  463. <path style="fill:#E2E5E7;" d="M128,0c-17.6,0-32,14.4-32,32v448c0,17.6,14.4,32,32,32h320c17.6,0,32-14.4,32-32V128L352,0H128z"/>
  464. <path style="fill:#B0B7BD;" d="M384,128h96L352,0v96C352,113.6,366.4,128,384,128z"/>
  465. <polygon style="fill:#CAD1D8;" points="480,224 384,128 480,128 "/>
  466. <path style="fill:{$background};" d="M416,416c0,8.8-7.2,16-16,16H48c-8.8,0-16-7.2-16-16V256c0-8.8,7.2-16,16-16h352c8.8,0,16,7.2,16,16 V416z"/>
  467. <path style="fill:#CAD1D8;" d="M400,432H96v16h304c8.8,0,16-7.2,16-16v-16C416,424.8,408.8,432,400,432z"/>
  468. <g><text><tspan x="220" y="380" font-size="124" font-family="Verdana, Helvetica, Arial, sans-serif" fill="white" text-anchor="middle">{$suffix}</tspan></text></g>
  469. </svg>
  470. EOT;
  471. return $icon;
  472. }
  473. }
  474. //////////////自定义///////////////////////////
  475. if (!function_exists('list_domain_image')) {
  476. //结果集信息里,多个字段需要增加domain_cdnurl
  477. function list_domain_image($list, $field)
  478. {
  479. if (!$list || empty($list)) {
  480. return $list;
  481. }
  482. foreach ($list as $vo => $info) {
  483. $list[$vo] = info_domain_image($info, $field);
  484. }
  485. return $list;
  486. }
  487. }
  488. if (!function_exists('info_domain_image')) {
  489. //单条信息里,多个字段需要增加domain_cdnurl
  490. //支持image,images
  491. function info_domain_image($data, $field)
  492. {
  493. if (!$data || empty($data)) {
  494. return $data;
  495. }
  496. foreach ($data as $key => $val) {
  497. if (in_array($key, $field)) {
  498. $data[$key] = one_domain_image($val);
  499. }
  500. }
  501. return $data;
  502. }
  503. }
  504. if (!function_exists('one_domain_image')) {
  505. //支持单个字段,需要增加domain_cdnurl
  506. //支持image,images
  507. function one_domain_image($one)
  508. {
  509. if (!$one) {
  510. return $one;
  511. }
  512. if (strpos($one, ',')){
  513. //逗号隔开的多个图片
  514. $one = explode(',', $one);
  515. foreach ($one as $k => $v) {
  516. $one[$k] = localpath_to_netpath($v);
  517. }
  518. $one = implode(',',$one);
  519. } else {
  520. $one = localpath_to_netpath($one);
  521. }
  522. return $one;
  523. }
  524. }
  525. if (!function_exists('json_domain_image')) {
  526. //支持单个字段,需要增加domain_cdnurl
  527. //支持image,images
  528. function array_domain_image($one)
  529. {
  530. if(!empty($one)){
  531. foreach ($one as $key => $val) {
  532. $one[$key] = localpath_to_netpath($val);
  533. }
  534. }
  535. return $one;
  536. }
  537. }
  538. if (!function_exists('localpath_to_netpath')) {
  539. //本地地址转换为网络地址
  540. function localpath_to_netpath($path)
  541. {
  542. if (empty($path)) {
  543. return '';
  544. } elseif (strrpos($path, 'http') !== false) {
  545. return $path;
  546. } else {
  547. return config('pay_notify_url') . str_replace("\\", "/", $path);
  548. // return config('upload.cdnurl') . str_replace("\\", "/", $path);
  549. }
  550. }
  551. }
  552. if (!function_exists('request_post_hub')) {
  553. //post接收参数中心,只接非必须
  554. function request_post_hub($field_array = [],$required = [],$noempty = []){
  555. if(empty($field_array)){
  556. return [];
  557. }
  558. $data = [];
  559. foreach($field_array as $key => $field){
  560. //接收
  561. if(!request()->has($field,'post')){
  562. continue;
  563. }
  564. $newone = request()->post($field);
  565. //追加
  566. $data[$field] = $newone;
  567. }
  568. //必传
  569. if(!empty($required)){
  570. foreach($required as $k => $mustone){
  571. if(!isset($data[$mustone])){
  572. return $mustone.' required';
  573. }
  574. }
  575. }
  576. //必传,且不能空
  577. if(!empty($noempty)){
  578. foreach($noempty as $havekey => $haveone){
  579. if(!isset($data[$havekey]) || empty($data[$havekey])){
  580. return $haveone.' 必填';
  581. }
  582. }
  583. }
  584. return $data;
  585. }
  586. }
  587. /**
  588. * 时间转换
  589. * @param null $time
  590. * @return false|string
  591. */
  592. if (!function_exists('get_last_time')) {
  593. function get_last_time($time = NULL) {
  594. $text = '';
  595. $nowtime = time();
  596. $time = ($time === NULL || empty($time) || $time > $nowtime) ? $nowtime : intval($time);
  597. $t = $nowtime - $time; //时间差 (秒)
  598. $y = date('Y', $time)-date('Y', $nowtime);//是否跨年
  599. switch($t){
  600. case $t == 0:
  601. $text = '刚刚';
  602. break;
  603. case $t < 60:
  604. $text = $t . '秒前'; // 一分钟内
  605. break;
  606. case $t < 60 * 60:
  607. $text = floor($t / 60) . '分钟前'; //一小时内
  608. break;
  609. case $t < 60 * 60 * 24:
  610. $text = floor($t / (60 * 60)) . '小时前'; // 一天内
  611. break;
  612. case $t < 60 * 60 * 24 * 3:
  613. $text = floor($time/(60*60*24)) ==1 ?'昨天 ' . date('H:i', $time) : '前天 ' . date('H:i', $time) ; //昨天和前天
  614. break;
  615. case $t < 60 * 60 * 24 * 30:
  616. $text = date('m月d日 H:i', $time); //一个月内
  617. break;
  618. case $t < 60 * 60 * 24 * 365&&$y==0:
  619. $text = date('m月d日', $time); //一年内
  620. break;
  621. default:
  622. $text = date('Y年m月d日', $time); //一年以前
  623. break;
  624. }
  625. return $text;
  626. }
  627. }
  628. if (!function_exists('get_rand_nick_name')) {
  629. function get_rand_nick_name()
  630. {
  631. $nicheng_tou = array('快乐的', '冷静的', '醉熏的', '潇洒的', '糊涂的', '积极的', '冷酷的', '深情的', '粗暴的', '温柔的', '可爱的', '愉快的', '义气的', '认真的', '威武的', '帅气的', '传统的', '潇洒的', '漂亮的', '自然的', '专一的', '听话的', '昏睡的', '狂野的', '等待的', '搞怪的', '幽默的', '魁梧的', '活泼的', '开心的', '高兴的', '超帅的', '留胡子的', '坦率的', '直率的', '轻松的', '痴情的', '完美的', '精明的', '无聊的', '有魅力的', '丰富的', '繁荣的', '饱满的', '炙热的', '暴躁的', '碧蓝的', '俊逸的', '英勇的', '健忘的', '故意的', '无心的', '土豪的', '朴实的', '兴奋的', '幸福的', '淡定的', '不安的', '阔达的', '孤独的', '独特的', '疯狂的', '时尚的', '落后的', '风趣的', '忧伤的', '大胆的', '爱笑的', '矮小的', '健康的', '合适的', '玩命的', '沉默的', '斯文的', '香蕉', '苹果', '鲤鱼', '鳗鱼', '任性的', '细心的', '粗心的', '大意的', '甜甜的', '酷酷的', '健壮的', '英俊的', '霸气的', '阳光的', '默默的', '大力的', '孝顺的', '忧虑的', '着急的', '紧张的', '善良的', '凶狠的', '害怕的', '重要的', '危机的', '欢喜的', '欣慰的', '满意的', '跳跃的', '诚心的', '称心的', '如意的', '怡然的', '娇气的', '无奈的', '无语的', '激动的', '愤怒的', '美好的', '感动的', '激情的', '激昂的', '震动的', '虚拟的', '超级的', '寒冷的', '精明的', '明理的', '犹豫的', '忧郁的', '寂寞的', '奋斗的', '勤奋的', '现代的', '过时的', '稳重的', '热情的', '含蓄的', '开放的', '无辜的', '多情的', '纯真的', '拉长的', '热心的', '从容的', '体贴的', '风中的', '曾经的', '追寻的', '儒雅的', '优雅的', '开朗的', '外向的', '内向的', '清爽的', '文艺的', '长情的', '平常的', '单身的', '伶俐的', '高大的', '懦弱的', '柔弱的', '爱笑的', '乐观的', '耍酷的', '酷炫的', '神勇的', '年轻的', '唠叨的', '瘦瘦的', '无情的', '包容的', '顺心的', '畅快的', '舒适的', '靓丽的', '负责的', '背后的', '简单的', '谦让的', '彩色的', '缥缈的', '欢呼的', '生动的', '复杂的', '慈祥的', '仁爱的', '魔幻的', '虚幻的', '淡然的', '受伤的', '雪白的', '高高的', '糟糕的', '顺利的', '闪闪的', '羞涩的', '缓慢的', '迅速的', '优秀的', '聪明的', '含糊的', '俏皮的', '淡淡的', '坚强的', '平淡的', '欣喜的', '能干的', '灵巧的', '友好的', '机智的', '机灵的', '正直的', '谨慎的', '俭朴的', '殷勤的', '虚心的', '辛勤的', '自觉的', '无私的', '无限的', '踏实的', '老实的', '现实的', '可靠的', '务实的', '拼搏的', '个性的', '粗犷的', '活力的', '成就的', '勤劳的', '单纯的', '落寞的', '朴素的', '悲凉的', '忧心的', '洁净的', '清秀的', '自由的', '小巧的', '单薄的', '贪玩的', '刻苦的', '干净的', '壮观的', '和谐的', '文静的', '调皮的', '害羞的', '安详的', '自信的', '端庄的', '坚定的', '美满的', '舒心的', '温暖的', '专注的', '勤恳的', '美丽的', '腼腆的', '优美的', '甜美的', '甜蜜的', '整齐的', '动人的', '典雅的', '尊敬的', '舒服的', '妩媚的', '秀丽的', '喜悦的', '甜美的', '彪壮的', '强健的', '大方的', '俊秀的', '聪慧的', '迷人的', '陶醉的', '悦耳的', '动听的', '明亮的', '结实的', '魁梧的', '标致的', '清脆的', '敏感的', '光亮的', '大气的', '老迟到的', '知性的', '冷傲的', '呆萌的', '野性的', '隐形的', '笑点低的', '微笑的', '笨笨的', '难过的', '沉静的', '火星上的', '失眠的', '安静的', '纯情的', '要减肥的', '迷路的', '烂漫的', '哭泣的', '贤惠的', '苗条的', '温婉的', '发嗲的', '会撒娇的', '贪玩的', '执着的', '眯眯眼的', '花痴的', '想人陪的', '眼睛大的', '高贵的', '傲娇的', '心灵美的', '爱撒娇的', '细腻的', '天真的', '怕黑的', '感性的', '飘逸的', '怕孤独的', '忐忑的', '高挑的', '傻傻的', '冷艳的', '爱听歌的', '还单身的', '怕孤单的', '懵懂的');
  632. $nicheng_wei = array('嚓茶', '凉面', '便当', '毛豆', '花生', '可乐', '灯泡', '哈密瓜', '野狼', '背包', '眼神', '缘分', '雪碧', '人生', '牛排', '蚂蚁', '飞鸟', '灰狼', '斑马', '汉堡', '悟空', '巨人', '绿茶', '自行车', '保温杯', '大碗', '墨镜', '魔镜', '煎饼', '月饼', '月亮', '星星', '芝麻', '啤酒', '玫瑰', '大叔', '小伙', '哈密瓜,数据线', '太阳', '树叶', '芹菜', '黄蜂', '蜜粉', '蜜蜂', '信封', '西装', '外套', '裙子', '大象', '猫咪', '母鸡', '路灯', '蓝天', '白云', '星月', '彩虹', '微笑', '摩托', '板栗', '高山', '大地', '大树', '电灯胆', '砖头', '楼房', '水池', '鸡翅', '蜻蜓', '红牛', '咖啡', '机器猫', '枕头', '大船', '诺言', '钢笔', '刺猬', '天空', '飞机', '大炮', '冬天', '洋葱', '春天', '夏天', '秋天', '冬日', '航空', '毛衣', '豌豆', '黑米', '玉米', '眼睛', '老鼠', '白羊', '帅哥', '美女', '季节', '鲜花', '服饰', '裙子', '白开水', '秀发', '大山', '火车', '汽车', '歌曲', '舞蹈', '老师', '导师', '方盒', '大米', '麦片', '水杯', '水壶', '手套', '鞋子', '自行车', '鼠标', '手机', '电脑', '书本', '奇迹', '身影', '香烟', '夕阳', '台灯', '宝贝', '未来', '皮带', '钥匙', '心锁', '故事', '花瓣', '滑板', '画笔', '画板', '学姐', '店员', '电源', '饼干', '宝马', '过客', '大白', '时光', '石头', '钻石', '河马', '犀牛', '西牛', '绿草', '抽屉', '柜子', '往事', '寒风', '路人', '橘子', '耳机', '鸵鸟', '朋友', '苗条', '铅笔', '钢笔', '硬币', '热狗', '大侠', '御姐', '萝莉', '毛巾', '期待', '盼望', '白昼', '黑夜', '大门', '黑裤', '钢铁侠', '哑铃', '板凳', '枫叶', '荷花', '乌龟', '仙人掌', '衬衫', '大神', '草丛', '早晨', '心情', '茉莉', '流沙', '蜗牛', '战斗机', '冥王星', '猎豹', '棒球', '篮球', '乐曲', '电话', '网络', '世界', '中心', '鱼', '鸡', '狗', '老虎', '鸭子', '雨', '羽毛', '翅膀', '外套', '火', '丝袜', '书包', '钢笔', '冷风', '八宝粥', '烤鸡', '大雁', '音响', '招牌', '胡萝卜', '冰棍', '帽子', '菠萝', '蛋挞', '香水', '泥猴桃', '吐司', '溪流', '黄豆', '樱桃', '小鸽子', '小蝴蝶', '爆米花', '花卷', '小鸭子', '小海豚', '日记本', '小熊猫', '小懒猪', '小懒虫', '荔枝', '镜子', '曲奇', '金针菇', '小松鼠', '小虾米', '酒窝', '紫菜', '金鱼', '柚子', '果汁', '百褶裙', '项链', '帆布鞋', '火龙果', '奇异果', '煎蛋', '唇彩', '小土豆', '高跟鞋', '戒指', '雪糕', '睫毛', '铃铛', '手链', '香氛', '红酒', '月光', '酸奶', '银耳汤', '咖啡豆', '小蜜蜂', '小蚂蚁', '蜡烛', '棉花糖', '向日葵', '水蜜桃', '小蝴蝶', '小刺猬', '小丸子', '指甲油', '康乃馨', '糖豆', '薯片', '口红', '超短裙', '乌冬面', '冰淇淋', '棒棒糖', '长颈鹿', '豆芽', '发箍', '发卡', '发夹', '发带', '铃铛', '小馒头', '小笼包', '小甜瓜', '冬瓜', '香菇', '小兔子', '含羞草', '短靴', '睫毛膏', '小蘑菇', '跳跳糖', '小白菜', '草莓', '柠檬', '月饼', '百合', '纸鹤', '小天鹅', '云朵', '芒果', '面包', '海燕', '小猫咪', '龙猫', '唇膏', '鞋垫', '羊', '黑猫', '白猫', '万宝路', '金毛', '山水', '音响');
  633. $nicheng = $nicheng_tou[array_rand($nicheng_tou, 1)] . $nicheng_wei[array_rand($nicheng_wei, 1)];
  634. return $nicheng; //输出生成的昵称
  635. }
  636. }
  637. if (!function_exists('createUniqueNo')) {
  638. //创建订单号
  639. function createUniqueNo($prifix = 'P',$id = 0)
  640. {
  641. $s = 0;
  642. $ms = 0;
  643. list($ms, $s) = explode(' ', microtime());
  644. $ms = substr($ms, 2, 6); //获取微妙
  645. $rt = $prifix.date('YmdHis', $s).$ms.rand(10, 99).$id; //年月日时分秒.用户id对10取余.微秒
  646. return $rt;
  647. }
  648. }
  649. if (!function_exists('getUinqueId')) {
  650. /**
  651. * 生成不重复的随机数字
  652. */
  653. function getUinqueId($length = 8, $ids = [])
  654. {
  655. $newid = Random::build("nozero", $length);
  656. if (in_array($newid, $ids)) {
  657. $newid = getUinqueId($length, $ids);
  658. }
  659. return $newid;
  660. }
  661. }
  662. if (!function_exists('curl_post')) {
  663. /**
  664. * 发起HTTPS请求
  665. */
  666. function curl_post($url, $data, $header = '', $timeOut = 0)
  667. {
  668. //初始化curl
  669. $ch = curl_init();
  670. //参数设置
  671. curl_setopt($ch, CURLOPT_URL, $url);
  672. curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE);
  673. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
  674. curl_setopt($ch, CURLOPT_TIMEOUT, $timeOut);
  675. curl_setopt($ch, CURLOPT_HEADER, 0);
  676. curl_setopt($ch, CURLOPT_POST, 1);
  677. curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
  678. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  679. if ($header != '') {
  680. curl_setopt($ch, CURLOPT_HTTPHEADER, $header);
  681. }
  682. $result = curl_exec($ch);
  683. //连接失败
  684. if ($result == FALSE) {
  685. //\think\Log::record('[ CURL ] ERROR ' . curl_error($ch)."\n".var_export(debug_backtrace(), true)."\n", 'error');
  686. }
  687. curl_close($ch);
  688. return $result;
  689. }
  690. }
  691. if (!function_exists('curl_get')) {
  692. /**
  693. * 发起HTTP GET请求
  694. */
  695. function curl_get($url,$header = '')
  696. {
  697. $oCurl = curl_init();
  698. if (stripos($url, "https://") !== FALSE) {
  699. curl_setopt($oCurl, CURLOPT_SSL_VERIFYPEER, FALSE);
  700. curl_setopt($oCurl, CURLOPT_SSL_VERIFYHOST, FALSE);
  701. curl_setopt($oCurl, CURLOPT_SSLVERSION, 1); //CURL_SSLVERSION_TLSv1
  702. }
  703. curl_setopt($oCurl, CURLOPT_TIMEOUT, 3);
  704. curl_setopt($oCurl, CURLOPT_URL, $url);
  705. curl_setopt($oCurl, CURLOPT_RETURNTRANSFER, 1);
  706. if($header){
  707. curl_setopt($oCurl, CURLOPT_HTTPHEADER, $header);
  708. }
  709. curl_setopt($oCurl, CURLOPT_HEADER, 0);
  710. $sContent = curl_exec($oCurl);
  711. $aStatus = curl_getinfo($oCurl);
  712. $error = curl_error($oCurl);
  713. curl_close($oCurl);
  714. if ($error) {
  715. $sContent = file_get_contents($url);
  716. return $sContent;
  717. }
  718. if (intval($aStatus["http_code"]) == 200) {
  719. return $sContent;
  720. } else {
  721. return false;
  722. }
  723. }
  724. }
  725. if (!function_exists('day_now')) {
  726. //返回今天的开始时间和结束时间
  727. function day_now()
  728. {
  729. $arr = [
  730. mktime(0, 0, 0, date('m'), date('d'), date('Y')),
  731. mktime(23, 59, 59, date('m'), date('d'), date('Y')),
  732. ];
  733. return $arr;
  734. }
  735. }
  736. if (!function_exists('day_yesterday')) {
  737. //返回昨天开始结束时间 改造上边的方法
  738. function day_yesterday()
  739. {
  740. $yesterday = date('d') - 1;
  741. $arr = [
  742. mktime(0, 0, 0, date('m'), $yesterday, date('Y')),
  743. mktime(23, 59, 59, date('m'), $yesterday, date('Y')),
  744. ];
  745. return $arr;
  746. }
  747. }
  748. if (!function_exists('week_now')) {
  749. //获取当前时间的本周开始结束时间
  750. function week_now()
  751. {
  752. $arr = [
  753. strtotime(date('Y-m-d', strtotime("+0 week Monday", time()))),
  754. strtotime(date('Y-m-d', strtotime("+0 week Sunday", time())))
  755. ];
  756. return $arr;
  757. }
  758. }
  759. if (!function_exists('last_week')) {
  760. //返回上周开始和结束的时间戳
  761. function last_week()
  762. {
  763. $arr = [
  764. strtotime('last week Monday', time()),
  765. strtotime('last week Sunday +1 days -1 seconds', time())
  766. ];
  767. return $arr;
  768. }
  769. }
  770. if (!function_exists('changeW')) {
  771. /**
  772. * 数字转化
  773. */
  774. function changeW($val) {
  775. return $val > 10000 ? round($val/10000,4)."w" : $val.'';
  776. }
  777. }
  778. if(!function_exists('mk_dir')) {
  779. /**
  780. * 新建目录
  781. */
  782. function mk_dir($dir, $mode = 0770, $tmp = true)
  783. {
  784. $mode = 0770;
  785. if(is_file($dir)) {
  786. //有同名文件
  787. return false;
  788. } else {
  789. if(!is_dir($dir)) { //目录不存在
  790. $dir_up = dirname($dir); //上级目录
  791. if(!is_dir($dir_up)) {
  792. //上级不存在
  793. $rs = @mk_dir($dir_up);
  794. if(!$rs) return false;
  795. }
  796. $rs = @mkdir($dir, $mode); //新建
  797. if(!$rs) return false;
  798. $rs = @chmod($dir, $mode); //改权限
  799. if(!$rs) return false;
  800. }
  801. return true;
  802. }
  803. }
  804. }
  805. if(!function_exists('filePut')) {
  806. /**
  807. * 在线支付日志
  808. */
  809. function filePut($info,$text='notify.txt'){
  810. if(is_array($info)) {
  811. $info = json_encode($info, JSON_UNESCAPED_UNICODE);
  812. }
  813. if(!file_exist(RUNTIME_PATH.'paylog/')) {
  814. mk_dir(RUNTIME_PATH.'paylog/');
  815. }
  816. $file = RUNTIME_PATH.'paylog/'.$text;
  817. touch_file($file);
  818. if(filesize($file)>5242880)//大于5M自动切换
  819. {
  820. rename($file, $file.'notify_'.date('Y_m_d_H_i_s').'.txt');
  821. }
  822. touch_file($file);
  823. file_put_contents($file, "\r\n".date('Y-m-d H:i:s').' '.$info, FILE_APPEND);
  824. }
  825. }
  826. if(!function_exists('touch_file')) {
  827. /**
  828. * 新建文件
  829. */
  830. function touch_file($file = '')
  831. {
  832. if($file) {
  833. if(!file_exists($file)) {
  834. @touch($file);
  835. @chmod($file, 0770);
  836. }
  837. }
  838. }
  839. }
  840. if(!function_exists('file_exist')) {
  841. /**
  842. * 检测文件是否存在
  843. * @param $file
  844. * @return string
  845. */
  846. function file_exist($file)
  847. {
  848. if(false === strpos($file, 'http')) { //本地文件
  849. if(0 === strpos($file, '/upload')) {
  850. $file = '.'.$file;
  851. }
  852. return file_exists($file);
  853. } else { //网络文件
  854. $ch = curl_init();
  855. curl_setopt($ch, CURLOPT_URL, $file);
  856. curl_setopt($ch, CURLOPT_TIMEOUT, 2);
  857. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  858. curl_exec($ch);
  859. $status = curl_getinfo($ch,CURLINFO_HTTP_CODE);
  860. curl_close($ch);
  861. if(in_array(substr($status, 0, 1), [2, 3])) {
  862. return true;
  863. } else {
  864. return false;
  865. }
  866. }
  867. }
  868. }
  869. if(!function_exists('list_birthday_age')) {
  870. //结果集信息里,生日转换年龄
  871. function list_birthday_age($list){
  872. if(!$list || empty($list)){
  873. return $list;
  874. }
  875. foreach($list as $vo => $info){
  876. $list[$vo]['age'] = birthtime_to_age($info['birthday']);
  877. }
  878. return $list;
  879. }
  880. }
  881. if(!function_exists('Sec2Time')) {
  882. //秒 转换 日月分
  883. function Sec2Time($time){
  884. if(is_numeric($time)){
  885. $value = array(
  886. 'years' => 0, 'days' => 0, 'hours' => 0,
  887. 'minutes' => 0, 'seconds' => 0,
  888. );
  889. /*if($time >= 31556926){
  890. $value['years'] = floor($time/31556926);
  891. $time = ($time%31556926);
  892. }*/
  893. if($time >= 86400){
  894. $value['days'] = floor($time/86400);
  895. $time = ($time%86400);
  896. }
  897. if($time >= 3600){
  898. $value['hours'] = floor($time/3600);
  899. $time = ($time%3600);
  900. }
  901. if($time >= 60){
  902. $value['minutes'] = floor($time/60);
  903. $time = ($time%60);
  904. }
  905. $value['seconds'] = floor($time);
  906. //return (array) $value;
  907. //$t=$value['years'] .'年'. $value['days'] .'天'.' '. $value['hours'] .'小时'. $value['minutes'] .'分'.$value['seconds'].'秒';
  908. $t = $value['days'] .'天' . $value['hours'] .'小时'. $value['minutes'] .'分';
  909. return $t;
  910. }else{
  911. return '0天';
  912. }
  913. }
  914. }
  915. if(!function_exists('birthtime_to_age')) {
  916. //生日转年龄
  917. function birthtime_to_age($birthtime){
  918. // $birthtime = strtotime('1990-11-06');
  919. if(!$birthtime){
  920. return 0;
  921. }
  922. list($y1,$m1,$d1) = explode("-",date("Y-m-d",$birthtime));
  923. list($y2,$m2,$d2) = explode("-",date("Y-m-d",time()));
  924. $age = $y2 - $y1;
  925. if((int)($m2.$d2) < (int)($m1.$d1))
  926. {$age -= 1;}
  927. if($age < 0){
  928. $age = 0;
  929. }
  930. return $age;
  931. }
  932. }
  933. if (!function_exists('unix_time')) {
  934. /**
  935. * 格式化
  936. * @param $time
  937. * @return string
  938. */
  939. function unix_time($time): string
  940. {
  941. //获取今天凌晨的时间戳
  942. $day = strtotime(date('Y-m-d', time()));
  943. //获取昨天凌晨的时间戳
  944. $pday = strtotime(date('Y-m-d', strtotime('-1 day')));
  945. //获取现在的时间戳
  946. $nowtime = time();
  947. $t = $nowtime - $time;
  948. if ($time < $pday) {
  949. $str = date('m-d', $time);
  950. } elseif ($time < $day && $time > $pday) {
  951. $str = "昨天";
  952. } elseif ($t > 60 * 60) {
  953. $str = floor($t / (60 * 60)) . "小时前";
  954. } elseif ($t > 60) {
  955. $str = floor($t / 60) . "分钟前";
  956. } else {
  957. $str = "刚刚";
  958. }
  959. return $str;
  960. }
  961. }
  962. /**
  963. * 多行输入框回车换行
  964. * @param string $str
  965. * @return string mixed
  966. */
  967. if (!function_exists('line_feed')) {
  968. function line_feed(string $str): string
  969. {
  970. return str_replace("\n", "<br />", $str ?? '');
  971. }
  972. }
  973. if (!function_exists('str_limit')){
  974. /**
  975. * 超出字符省略
  976. * @param $value
  977. * @param int $limit
  978. * @param string $end
  979. * @return mixed|string
  980. */
  981. function str_limit($value, int $limit = 100, string $end = '...') {
  982. if (mb_strwidth($value, 'UTF-8') <= $limit) {
  983. return $value;
  984. }
  985. return rtrim(mb_strimwidth($value, 0, $limit, '', 'UTF-8')) . $end;
  986. }
  987. }
  988. if (!function_exists('dd')) {
  989. function dd(...$vars){
  990. foreach ($vars as $v) {
  991. dump($v);
  992. }
  993. exit();
  994. }
  995. }