common.php 37 KB

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