加密后的代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

common.php 22KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916
  1. <?php
  2. use app\common\server\ConfigServer;
  3. use app\common\server\UrlServer;
  4. use think\facade\Db;
  5. use app\common\model\user\User;
  6. use app\common\model\goods\Goods;
  7. use think\facade\Log;
  8. use think\facade\Validate;
  9. /**
  10. * Notes: 生成随机长度字符串
  11. * @param $length
  12. * @author FZR(2021/1/28 10:36)
  13. * @return string|null
  14. */
  15. function getRandChar($length)
  16. {
  17. $str = null;
  18. $strPol = "ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyz";
  19. $max = strlen($strPol) - 1;
  20. for ($i = 0;
  21. $i < $length;
  22. $i++) {
  23. $str .= $strPol[rand(0, $max)];
  24. }
  25. return $str;
  26. }
  27. /**
  28. * Notes: 生成密码
  29. * @param $plaintext
  30. * @param $salt
  31. * @author FZR(2021/1/28 15:30)
  32. * @return string
  33. */
  34. function generatePassword($plaintext, $salt)
  35. {
  36. $salt = md5('y' . $salt . 'x');
  37. $salt .= '2021';
  38. return md5($plaintext . $salt);
  39. }
  40. /**
  41. * Notes: 大写字母
  42. * @author 段誉(2021/4/15 15:55)
  43. * @return array
  44. */
  45. function getCapital()
  46. {
  47. return range('A','Z');
  48. }
  49. /**
  50. * 线性结构转换成树形结构
  51. * @param array $data 线性结构数组
  52. * @param string $sub_key_name 自动生成子数组名
  53. * @param string $id_name 数组id名
  54. * @param string $parent_id_name 数组祖先id名
  55. * @param int $parent_id 此值请勿给参数
  56. * @return array
  57. */
  58. function linear_to_tree($data, $sub_key_name = 'sub', $id_name = 'id', $parent_id_name = 'pid', $parent_id = 0)
  59. {
  60. $tree = [];
  61. foreach ($data as $row) {
  62. if ($row[$parent_id_name] == $parent_id) {
  63. $temp = $row;
  64. $temp[$sub_key_name] = linear_to_tree($data, $sub_key_name, $id_name, $parent_id_name, $row[$id_name]);
  65. $tree[] = $temp;
  66. }
  67. }
  68. return $tree;
  69. }
  70. /**
  71. * User: 意象信息科技 lr
  72. * Desc: 下载文件
  73. * @param $url 文件url
  74. * @param $save_dir 保存目录
  75. * @param $file_name 文件名
  76. * @return string
  77. */
  78. function download_file($url, $save_dir, $file_name)
  79. {
  80. if (!file_exists($save_dir)) {
  81. mkdir($save_dir, 0775, true);
  82. }
  83. $file_src = $save_dir . $file_name;
  84. file_exists($file_src) && unlink($file_src);
  85. $ch = curl_init();
  86. curl_setopt($ch, CURLOPT_URL, $url);
  87. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  88. curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 30);
  89. // curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
  90. $file = curl_exec($ch);
  91. curl_close($ch);
  92. $resource = fopen($file_src, 'a');
  93. fwrite($resource, $file);
  94. fclose($resource);
  95. if (filesize($file_src) == 0) {
  96. unlink($file_src);
  97. return '';
  98. }
  99. return $file_src;
  100. }
  101. /**
  102. * 生成会员码
  103. * @return 会员码
  104. */
  105. function create_user_sn($prefix = '', $length = 8)
  106. {
  107. $rand_str = '';
  108. for ($i = 0; $i < $length; $i++) {
  109. $rand_str .= mt_rand(0, 9);
  110. }
  111. $sn = $prefix . $rand_str;
  112. $user = User::where(['sn' => $sn])->findOrEmpty();
  113. if (!$user->isEmpty()) {
  114. return create_user_sn($prefix, $length);
  115. }
  116. return $sn;
  117. }
  118. //生成用户邀请码
  119. function generate_invite_code()
  120. {
  121. $letter_all = range('A', 'Z');
  122. shuffle($letter_all);
  123. //排除I、O字母
  124. $letter_array = array_diff($letter_all, ['I', 'O', 'D']);
  125. //排除1、0
  126. $num_array = range('2', '9');
  127. shuffle($num_array);
  128. $pattern = array_merge($num_array, $letter_array, $num_array);
  129. shuffle($pattern);
  130. $pattern = array_values($pattern);
  131. $code = '';
  132. for ($i = 0; $i < 6; $i++) {
  133. $code .= $pattern[mt_rand(0, count($pattern) - 1)];
  134. }
  135. $code = strtoupper($code);
  136. $check = User::where('distribution_code', $code)->findOrEmpty();
  137. if (!$check->isEmpty()) {
  138. return generate_invite_code();
  139. }
  140. return $code;
  141. }
  142. /**
  143. * User: 意象信息科技 lr
  144. * Desc: 数组成功拼装
  145. * @param string $msg
  146. * @param array $data
  147. * @param int $code
  148. * @param int $show
  149. * @return array
  150. */
  151. function data_success($msg = '', $data = [], $code = 1, $show = 1)
  152. {
  153. $result = [
  154. 'code' => $code,
  155. 'msg' => $msg,
  156. 'data' => $data,
  157. 'show' => $show,
  158. ];
  159. return $result;
  160. }
  161. /**
  162. * User: 意象信息科技 lr
  163. * Desc: 组装失败数据
  164. * @param string $msg
  165. * @param array $data
  166. * @param int $code
  167. * @param int $show
  168. * @return array
  169. */
  170. function data_error($msg = '', $data = [], $code = 0, $show = 1)
  171. {
  172. $result = [
  173. 'code' => $code,
  174. 'msg' => $msg,
  175. 'data' => $data,
  176. 'show' => $show,
  177. ];
  178. return $result;
  179. }
  180. /**
  181. * User: 意象信息科技 cjh
  182. * Desc: 返回是否有下一页
  183. * @param $count (总记录数)
  184. * @param $page (当前页码)
  185. * @param $size (每页记录数)
  186. * @return int
  187. */
  188. function is_more($count, $page, $size)
  189. {
  190. $more = 0;
  191. $last_page = ceil($count / $size); //总页数、也是最后一页
  192. if ($last_page && $last_page > $page) {
  193. $more = 1;
  194. }
  195. return $more;
  196. }
  197. /**
  198. * User: 意象信息科技 lr
  199. * Desc:生成密码密文
  200. * @param $plaintext string 明文
  201. * @param $salt string 密码盐
  202. * @return string
  203. */
  204. function create_password($plaintext, $salt)
  205. {
  206. $salt = md5('y' . $salt . 'x');
  207. $salt .= '2021';
  208. return md5($plaintext . $salt);
  209. }
  210. /**
  211. * User: 意象信息科技 mjf
  212. * Desc: 用时间生成订单编号
  213. * @param $table
  214. * @param $field
  215. * @param string $prefix
  216. * @param int $rand_suffix_length
  217. * @param array $pool
  218. * @return string
  219. * @throws \think\db\exception\DataNotFoundException
  220. * @throws \think\db\exception\DbException
  221. * @throws \think\db\exception\ModelNotFoundException
  222. */
  223. function createSn($table, $field, $prefix = '', $rand_suffix_length = 4, $pool = [])
  224. {
  225. $suffix = '';
  226. for ($i = 0; $i < $rand_suffix_length; $i++) {
  227. if (empty($pool)) {
  228. $suffix .= rand(0, 9);
  229. } else {
  230. $suffix .= $pool[array_rand($pool)];
  231. }
  232. }
  233. $sn = $prefix . date('YmdHis') . $suffix;
  234. if (Db::name($table)->where($field, $sn)->find()) {
  235. return createSn($table, $field, $prefix, $rand_suffix_length, $pool);
  236. }
  237. return $sn;
  238. }
  239. /**
  240. * User: 意象信息科技 lr
  241. * Desc: 表单多维数据转换
  242. * 例:
  243. * 转换前:{"x":0,"a":[1,2,3],"b":[11,22,33],"c":[111,222,3333,444],"d":[1111,2222,3333]}
  244. * 转换为:[{"a":1,"b":11,"c":111,"d":1111},{"a":2,"b":22,"c":222,"d":2222},{"a":3,"b":33,"c":3333,"d":3333}]
  245. * @param $arr array 表单二维数组
  246. * @param $fill boolean fill为false,返回数据长度取最短,反之取最长,空值自动补充
  247. * @return array
  248. */
  249. function form_to_linear($arr, $fill = false)
  250. {
  251. $keys = [];
  252. $count = $fill ? 0 : PHP_INT_MAX;
  253. foreach ($arr as $k => $v) {
  254. if (is_array($v)) {
  255. $keys[] = $k;
  256. $count = $fill ? max($count, count($v)) : min($count, count($v));
  257. }
  258. }
  259. if (empty($keys)) {
  260. return [];
  261. }
  262. $data = [];
  263. for ($i = 0; $i < $count; $i++) {
  264. foreach ($keys as $v) {
  265. $data[$i][$v] = isset($arr[$v][$i]) ? $arr[$v][$i] : null;
  266. }
  267. }
  268. return $data;
  269. }
  270. /**
  271. * note 生成验证码
  272. * @param int $length 验证码长度
  273. * @return string
  274. */
  275. function create_sms_code($length = 4)
  276. {
  277. $code = '';
  278. for ($i = 0; $i < $length; $i++) {
  279. $code .= rand(0, 9);
  280. }
  281. return $code;
  282. }
  283. /**
  284. * 生成商品编码
  285. * 8位
  286. */
  287. function create_goods_code($shop_id)
  288. {
  289. $code = mt_rand(10000000, 99999999);
  290. $goods = Goods::where([
  291. 'code' => $code,
  292. 'shop_id' => $shop_id,
  293. 'del' => 0
  294. ])->findOrEmpty();
  295. if($goods->isEmpty()) {
  296. return $code;
  297. }
  298. create_goods_code($shop_id);
  299. }
  300. /**
  301. * 图片去除域名
  302. */
  303. function clearDomain($x)
  304. {
  305. if(is_array($x)) {
  306. $newX = [];
  307. foreach($x as $v) {
  308. $newX[] = trim(UrlServer::setFileUrl($v));
  309. }
  310. return $newX;
  311. }
  312. return trim(UrlServer::setFileUrl($x));
  313. }
  314. /*
  315. * 生成优惠券码 排除1、0、I、O相似的数字和字母
  316. */
  317. function create_coupon_code()
  318. {
  319. $letter_all = range('A', 'Z');
  320. shuffle($letter_all);
  321. //排除I、O字母
  322. $letter_array = array_diff($letter_all, ['I', 'O']);
  323. //随机获取四位字母
  324. $letter = array_rand(array_flip($letter_array), 4);
  325. //排除1、0
  326. $num_array = range('2', '9');
  327. shuffle($num_array);
  328. //获取随机六位数字
  329. $num = array_rand(array_flip($num_array), 6);
  330. $code = implode('', array_merge($letter, $num));
  331. do {
  332. $exist_code =\app\common\model\coupon\CouponList::where(['del' => 0, 'coupon_code' => $code])->find();
  333. } while ($exist_code);
  334. return $code;
  335. }
  336. /**
  337. * 浮点数去除无效的0
  338. */
  339. function clearZero($float)
  340. {
  341. if($float == intval($float)) {
  342. return intval($float);
  343. }else if($float == sprintf('%.1f', $float)) {
  344. return sprintf('%.1f', $float);
  345. }
  346. return $float;
  347. }
  348. /**
  349. * 是否在cli模式
  350. */
  351. if (!function_exists('is_cli')) {
  352. function is_cli()
  353. {
  354. return preg_match("/cli/i", php_sapi_name()) ? true : false;
  355. }
  356. }
  357. function real_path()
  358. {
  359. if (substr(strtolower(PHP_OS), 0, 3) == 'win') {
  360. $ini = ini_get_all();
  361. $path = $ini['extension_dir']['local_value'];
  362. $php_path = str_replace('\\', '/', $path);
  363. $php_path = str_replace(array('/ext/', '/ext'), array('/', '/'), $php_path);
  364. $real_path = $php_path . 'php.exe';
  365. } else {
  366. $real_path = PHP_BINDIR . '/php';
  367. }
  368. if (strpos($real_path, 'ephp.exe') !== FALSE) {
  369. $real_path = str_replace('ephp.exe', 'php.exe', $real_path);
  370. }
  371. return $real_path;
  372. }
  373. /**
  374. * 是否为移动端
  375. */
  376. function is_mobile()
  377. {
  378. if (isset($_SERVER['HTTP_X_WAP_PROFILE'])) {
  379. return true;
  380. }
  381. if (isset($_SERVER['HTTP_VIA'])) {
  382. return stristr($_SERVER['HTTP_VIA'], "wap") ? true : false;
  383. }
  384. if (isset($_SERVER['HTTP_USER_AGENT'])) {
  385. $clientkeywords = array('nokia', 'sony', 'ericsson', 'mot', 'samsung', 'htc', 'sgh', 'lg', 'sharp', 'sie-', 'philips', 'panasonic', 'alcatel', 'lenovo', 'iphone', 'ipod', 'blackberry', 'meizu', 'android', 'netfront', 'symbian', 'ucweb', 'windowsce', 'palm', 'operamini', 'operamobi', 'openwave', 'nexusone', 'cldc', 'midp', 'wap', 'mobile');
  386. if (preg_match("/(" . implode('|', $clientkeywords) . ")/i", strtolower($_SERVER['HTTP_USER_AGENT']))) {
  387. return true;
  388. }
  389. }
  390. if (isset($_SERVER['HTTP_ACCEPT'])) {
  391. if ((strpos($_SERVER['HTTP_ACCEPT'], 'vnd.wap.wml') !== false) && (strpos($_SERVER['HTTP_ACCEPT'], 'textml') === false || (strpos($_SERVER['HTTP_ACCEPT'], 'vnd.wap.wml') < strpos($_SERVER['HTTP_ACCEPT'], 'textml')))) {
  392. return true;
  393. }
  394. }
  395. return false;
  396. }
  397. /**
  398. * Notes:判断文件是否存在(远程和本地文件)
  399. * @param $file string 完整的文件链接
  400. * @return bool
  401. */
  402. function check_file_exists($file)
  403. {
  404. //远程文件
  405. if ('http' == strtolower(substr($file, 0, 4))) {
  406. $header = get_headers($file, true);
  407. return isset($header[0]) && (strpos($header[0], '200') || strpos($header[0], '304'));
  408. } else {
  409. return file_exists($file);
  410. }
  411. }
  412. /**
  413. * 将图片切成圆角
  414. */
  415. function rounded_corner($src_img)
  416. {
  417. $w = imagesx($src_img);//微信头像宽度 正方形的
  418. $h = imagesy($src_img);//微信头像宽度 正方形的
  419. $w = min($w, $h);
  420. $h = $w;
  421. $img = imagecreatetruecolor($w, $h);
  422. //这一句一定要有
  423. imagesavealpha($img, true);
  424. //拾取一个完全透明的颜色,最后一个参数127为全透明
  425. $bg = imagecolorallocatealpha($img, 255, 255, 255, 127);
  426. imagefill($img, 0, 0, $bg);
  427. $r = $w / 2; //圆半径
  428. // $y_x = $r; //圆心X坐标
  429. // $y_y = $r; //圆心Y坐标
  430. for ($x = 0; $x < $w; $x++) {
  431. for ($y = 0; $y < $h; $y++) {
  432. $rgbColor = imagecolorat($src_img, $x, $y);
  433. if (((($x - $r) * ($x - $r) + ($y - $r) * ($y - $r)) < ($r * $r))) {
  434. imagesetpixel($img, $x, $y, $rgbColor);
  435. }
  436. }
  437. }
  438. unset($src_img);
  439. return $img;
  440. }
  441. /**
  442. * Notes:去掉名称中的表情
  443. * @param $str
  444. * @return string|string[]|null
  445. * @author: cjhao 2021/3/29 15:56
  446. */
  447. function filterEmoji($str)
  448. {
  449. $str = preg_replace_callback(
  450. '/./u',
  451. function (array $match) {
  452. return strlen($match[0]) >= 4 ? '' : $match[0];
  453. },
  454. $str);
  455. return $str;
  456. }
  457. /***
  458. * 生成海报自动适应标题
  459. * @param $size
  460. * @param int $angle
  461. * @param $fontfile
  462. * @param $string
  463. * @param $width
  464. * @param $height
  465. * @param $bg_height
  466. * @return string
  467. */
  468. function auto_adapt($size, $angle = 0, $fontfile, $string, $width, $height, $bg_height)
  469. {
  470. $content = "";
  471. // 将字符串拆分成一个个单字 保存到数组 letter 中
  472. for ($i = 0; $i < mb_strlen($string); $i++) {
  473. $letters[] = mb_substr($string, $i, 1);
  474. }
  475. foreach ($letters as $letter) {
  476. $str = $content . " " . $letter;
  477. $box = imagettfbbox($size, $angle, $fontfile, $str);
  478. $total_height = $box[1] + $height;
  479. if ($bg_height[1] - $total_height < $size) {
  480. break;
  481. }
  482. //右下角X位置,判断拼接后的字符串是否超过预设的宽度
  483. if (($box[2] > $width) && ($content !== "")) {
  484. if ($bg_height[1] - $total_height < $size * 2) {
  485. break;
  486. }
  487. $content .= "\n";
  488. }
  489. $content .= $letter;
  490. }
  491. return $content;
  492. }
  493. /**
  494. * Notes:生成一个范围内的随机浮点数
  495. * @param int $min 最小值
  496. * @param int $max 最大值
  497. * @return float|int 返回随机数
  498. */
  499. function random_float($min = 0, $max = 1)
  500. {
  501. return $min + mt_rand() / mt_getrandmax() * ($max - $min);
  502. }
  503. /**
  504. * Notes: 获取文件扩展名
  505. * @param $file
  506. * @author 段誉(2021/7/7 18:03)
  507. * @return mixed
  508. */
  509. if (!function_exists('get_extension')) {
  510. function get_extension($file)
  511. {
  512. return pathinfo($file, PATHINFO_EXTENSION);
  513. }
  514. }
  515. /**
  516. * Notes: 遍历指定目录下的文件(目标目录,排除文件)
  517. * @param $dir 目标文件
  518. * @param string $exclude_file 要排除的文件
  519. * @param string $target_suffix 指定后缀
  520. * @author 段誉(2021/7/7 18:04)
  521. * @return array|bool
  522. */
  523. if (!function_exists('get_scandir')) {
  524. function get_scandir($dir, $exclude_file = '', $target_suffix = '')
  525. {
  526. if (!file_exists($dir)) {
  527. return [];
  528. }
  529. if (empty(trim($dir))) {
  530. return false;
  531. }
  532. $files = scandir($dir);
  533. $res = [];
  534. foreach ($files as $item) {
  535. if ($item == "." || $item == ".." || $item == $exclude_file) {
  536. continue;
  537. }
  538. if (!empty($target_suffix)) {
  539. if (get_extension($item) == $target_suffix) {
  540. $res[] = $item;
  541. }
  542. } else {
  543. $res[] = $item;
  544. }
  545. }
  546. if (empty($item)) {
  547. return false;
  548. }
  549. return $res;
  550. }
  551. }
  552. /**
  553. * Notes: 解压压缩包
  554. * @param $file 压缩包路径
  555. * @param $save_dir 保存路径
  556. * @author 段誉(2021/7/7 18:11)
  557. * @return bool
  558. */
  559. if (!function_exists('unzip')) {
  560. function unzip($file, $save_dir)
  561. {
  562. if (!file_exists($file)) {
  563. return false;
  564. }
  565. $zip = new \ZipArchive();
  566. if ($zip->open($file) !== TRUE) {//中文文件名要使用ANSI编码的文件格式
  567. return false;
  568. }
  569. $zip->extractTo($save_dir);
  570. $zip->close();
  571. return true;
  572. }
  573. }
  574. /**
  575. * Notes: 删除目标目录
  576. * @param $path
  577. * @param $delDir
  578. * @author 段誉(2021/7/7 18:19)
  579. * @return bool
  580. */
  581. if (!function_exists('del_target_dir')) {
  582. function del_target_dir($path, $delDir)
  583. {
  584. //没找到,不处理
  585. if (!file_exists($path)) {
  586. return false;
  587. }
  588. $handle = opendir($path);
  589. if ($handle) {
  590. while (false !== ($item = readdir($handle))) {
  591. if ($item != "." && $item != "..") {
  592. if (is_dir("$path/$item")) {
  593. del_target_dir("$path/$item", $delDir);
  594. } else {
  595. unlink("$path/$item");
  596. }
  597. }
  598. }
  599. closedir($handle);
  600. if ($delDir) {
  601. return rmdir($path);
  602. }
  603. } else {
  604. if (file_exists($path)) {
  605. return unlink($path);
  606. }
  607. return false;
  608. }
  609. }
  610. }
  611. /**
  612. * Notes: 获取本地版本数据
  613. * @return mixed
  614. * @author 段誉(2021/7/7 18:18)
  615. */
  616. if (!function_exists('local_version')) {
  617. function local_version()
  618. {
  619. if(!file_exists('./upgrade/')) {
  620. // 若文件夹不存在,先创建文件夹
  621. mkdir('./upgrade/', 0777, true);
  622. }
  623. if(!file_exists('./upgrade/version.json')) {
  624. // 获取本地版本号
  625. $version = config('project.version');
  626. $data = ['version' => $version];
  627. $src = './upgrade/version.json';
  628. // 新建文件
  629. file_put_contents($src, json_encode($data, JSON_UNESCAPED_UNICODE));
  630. }
  631. $json_string = file_get_contents('./upgrade/version.json');
  632. // 用参数true把JSON字符串强制转成PHP数组
  633. $data = json_decode($json_string, true);
  634. return $data;
  635. }
  636. }
  637. /**
  638. * Notes: 获取ip
  639. * @author 段誉(2021/7/9 10:19)
  640. * @return array|false|mixed|string
  641. */
  642. if (!function_exists('get_client_ip')) {
  643. function get_client_ip()
  644. {
  645. if (!isset($_SERVER)) {
  646. return getenv('SERVER_ADDR');
  647. }
  648. if($_SERVER['SERVER_ADDR']) {
  649. return $_SERVER['SERVER_ADDR'];
  650. }
  651. return $_SERVER['LOCAL_ADDR'];
  652. }
  653. }
  654. /**
  655. * @notes 友好时间提示
  656. * @param $time
  657. * @return false|string
  658. * @author 段誉
  659. * @date 2022/5/6 9:45
  660. */
  661. function friend_date($time)
  662. {
  663. if (empty($time)) {
  664. return false;
  665. }
  666. $d = time() - intval($time);
  667. $ld = $time - mktime(0, 0, 0, 0, 0, date('Y')); //年
  668. $md = $time - mktime(0, 0, 0, date('m'), 0, date('Y')); //月
  669. $byd = $time - mktime(0, 0, 0, date('m'), date('d') - 2, date('Y')); //前天
  670. $yd = $time - mktime(0, 0, 0, date('m'), date('d') - 1, date('Y')); //昨天
  671. $dd = $time - mktime(0, 0, 0, date('m'), date('d'), date('Y')); //今天
  672. $td = $time - mktime(0, 0, 0, date('m'), date('d') + 1, date('Y')); //明天
  673. $timeDay = date('d', $time);
  674. $nowDay = date('d', time());
  675. if (0 == $d) {
  676. return '刚刚';
  677. }
  678. switch ($d) {
  679. case $d < $td :
  680. $fdate = '后天' . date('H:i', $time);
  681. break;
  682. case $d < 0 && $timeDay == $nowDay:
  683. $fdate = '今天' . date('H:i', $time);
  684. break;
  685. case $d < 0:
  686. $fdate = '明天' . date('H:i', $time);
  687. break;
  688. case $d < 60:
  689. $fdate = $d . '秒前';
  690. break;
  691. case $d < 3600:
  692. $fdate = floor($d / 60) . '分钟前';
  693. break;
  694. case $d < $dd :
  695. $fdate = floor($d / 3600) . '小时前';
  696. break;
  697. case $d < $yd :
  698. $fdate = '昨天' . date('H:i', $time);
  699. break;
  700. case $d < $byd :
  701. $fdate = '前天' . date('H:i', $time);
  702. break;
  703. case $d < $md :
  704. $fdate = date('m月d日 H:i', $time);
  705. break;
  706. case $d < $ld :
  707. $fdate = date('m月d日', $time);
  708. break;
  709. default :
  710. $fdate = date('Y年m月d日', $time);
  711. break;
  712. }
  713. return $fdate;
  714. }
  715. /**
  716. * @notes 生成随机数字
  717. * @param $table
  718. * @param string $field
  719. * @param int $length
  720. * @param string $prefix
  721. * @return string
  722. * @author 段誉
  723. * @date 2022/11/1 15:51
  724. */
  725. function create_rand_number($table, $field = 'sn', $length = 8, $prefix = '')
  726. {
  727. $rand_str = '';
  728. for ($i = 0; $i < $length; $i++) {
  729. $rand_str .= mt_rand(0, 9);
  730. }
  731. $sn = $prefix . $rand_str;
  732. if (Db::name($table)->where($field, $sn)->find()) {
  733. return create_rand_number($table, $field, $length, $prefix);
  734. }
  735. return $sn;
  736. }
  737. /**
  738. * @notes 文本超出隐藏
  739. * @param $string
  740. * @param $length
  741. * @return mixed|string
  742. * @author 段誉
  743. * @date 2022/10/31 14:14
  744. */
  745. function text_out_hidden($string, $length)
  746. {
  747. if (mb_strlen($string) > $length) {
  748. $string = mb_substr($string, 0, $length) . '..';
  749. }
  750. return $string;
  751. }
  752. /**
  753. * @notes Html中的图片绝对路径转为相对路径
  754. * @param $content
  755. * @return array|string|string[]
  756. * @author ljj
  757. * @date 2022/3/28 3:27 下午
  758. */
  759. function HtmlSetImage($content)
  760. {
  761. $domain = UrlServer::getFileUrl('/');
  762. preg_match_all("/<\s*img\s+[^>]*?src\s*=\s*(\'|\")(.*?)\\1[^>]*?\/?\s*>/i",$content,$matches);
  763. if(!empty($matches)){
  764. $imgurl = $matches[2];
  765. foreach($imgurl as $val){
  766. $setVal = str_replace($domain, '', $val);
  767. $content = str_replace($val,$setVal,$content);
  768. }
  769. }
  770. return $content;
  771. }
  772. /**
  773. * @notes Html中的图片相对路径转为绝对路径
  774. * @param $content
  775. * @author ljj
  776. * @date 2022/3/28 3:35 下午
  777. */
  778. function HtmlGetImage($content)
  779. {
  780. $domain = UrlServer::getFileUrl('/');
  781. preg_match_all("/<\s*img\s+[^>]*?src\s*=\s*(\'|\")(.*?)\\1[^>]*?\/?\s*>/i",$content,$matches);
  782. if(!empty($matches)){
  783. $imgurl = $matches[2];
  784. foreach($imgurl as $val){
  785. if (strstr($val, 'http://')) continue;
  786. if (strstr($val, 'https://')) continue;
  787. $content = str_replace($val,$domain.$val,$content);
  788. }
  789. }
  790. return $content;
  791. }
  792. function check_is_image($image) : bool
  793. {
  794. try {
  795. if (function_exists('exif_imagetype')) {
  796. $ImageType = exif_imagetype($image);
  797. } else {
  798. $info = getimagesize($image);
  799. $ImageType = $info ? $info[2] : false;
  800. }
  801. } catch (\Exception $e) {
  802. return false;
  803. }
  804. return in_array($ImageType, [1, 2, 3, 6]);
  805. }
  806. function check_is_video($video) : bool
  807. {
  808. $type = mime_content_type($video);
  809. return strpos($type, 'video') !== false;
  810. }
  811. //处理昵称
  812. function replaceNickname($nickname)
  813. {
  814. //过滤emoji 特殊符号
  815. $str = preg_replace_callback( '/./u',
  816. function (array $match) {
  817. if (Validate::isChs($match[0])) {
  818. return $match[0];
  819. }
  820. return strlen($match[0]) >= 4 ? '' : (ctype_graph($match[0]) ? $match[0] : '');
  821. },
  822. $nickname);
  823. return str_replace(' ', '', trim($str));
  824. }