common.php 37 KB

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