common.php 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580
  1. <?php
  2. // 公共助手函数
  3. use app\common\model\User;
  4. use EasyWeChat\Factory;
  5. use Symfony\Component\VarExporter\VarExporter;
  6. use think\exception\HttpResponseException;
  7. use think\Response;
  8. if (!function_exists('__')) {
  9. /**
  10. * 获取语言变量值
  11. * @param string $name 语言变量名
  12. * @param array $vars 动态变量值
  13. * @param string $lang 语言
  14. * @return mixed
  15. */
  16. function __($name, $vars = [], $lang = '')
  17. {
  18. if (is_numeric($name) || !$name) {
  19. return $name;
  20. }
  21. if (!is_array($vars)) {
  22. $vars = func_get_args();
  23. array_shift($vars);
  24. $lang = '';
  25. }
  26. return \think\Lang::get($name, $vars, $lang);
  27. }
  28. }
  29. if (!function_exists('format_bytes')) {
  30. /**
  31. * 将字节转换为可读文本
  32. * @param int $size 大小
  33. * @param string $delimiter 分隔符
  34. * @param int $precision 小数位数
  35. * @return string
  36. */
  37. function format_bytes($size, $delimiter = '', $precision = 2)
  38. {
  39. $units = array('B', 'KB', 'MB', 'GB', 'TB', 'PB');
  40. for ($i = 0; $size >= 1024 && $i < 6; $i++) {
  41. $size /= 1024;
  42. }
  43. return round($size, $precision) . $delimiter . $units[$i];
  44. }
  45. }
  46. if (!function_exists('datetime')) {
  47. /**
  48. * 将时间戳转换为日期时间
  49. * @param int $time 时间戳
  50. * @param string $format 日期时间格式
  51. * @return string
  52. */
  53. function datetime($time, $format = 'Y-m-d H:i:s')
  54. {
  55. $time = is_numeric($time) ? $time : strtotime($time);
  56. return date($format, $time);
  57. }
  58. }
  59. if (!function_exists('human_date')) {
  60. /**
  61. * 获取语义化时间
  62. * @param int $time 时间
  63. * @param int $local 本地时间
  64. * @return string
  65. */
  66. function human_date($time, $local = null)
  67. {
  68. return \fast\Date::human($time, $local);
  69. }
  70. }
  71. if (!function_exists('cdnurl')) {
  72. /**
  73. * 获取上传资源的CDN的地址
  74. * @param string $url 资源相对地址
  75. * @param boolean $domain 是否显示域名 或者直接传入域名
  76. * @return string
  77. */
  78. function cdnurl($url, $domain = false)
  79. {
  80. $regex = "/^((?:[a-z]+:)?\/\/|data:image\/)(.*)/i";
  81. $cdnurl = \think\Config::get('upload.cdnurl');
  82. $url = preg_match($regex, $url) || ($cdnurl && stripos($url, $cdnurl) === 0) ? $url : $cdnurl . $url;
  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'] = isset($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'] = isset($v['display']) ? $v['display'] : str_replace(['_ids', '_id'], ['_names', '_name'], $v['field']);
  208. $v['primary'] = isset($v['primary']) ? $v['primary'] : '';
  209. $v['column'] = isset($v['column']) ? $v['column'] : 'name';
  210. $v['model'] = isset($v['model']) ? $v['model'] : '';
  211. $v['table'] = isset($v['table']) ? $v['table'] : '';
  212. $v['name'] = isset($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. $model = $v['name'] ? \think\Db::name($v['name']) : \think\Db::table($v['table']);
  230. }
  231. $primary = $v['primary'] ? $v['primary'] : $model->getPk();
  232. $result[$v['field']] = isset($ids[$v['field']]) ? $model->where($primary, 'in', $ids[$v['field']])->column("{$primary},{$v['column']}") : [];
  233. }
  234. foreach ($items as $k => &$v) {
  235. foreach ($fields as $m => $n) {
  236. if (isset($v[$n])) {
  237. $curr = array_flip(explode(',', $v[$n]));
  238. $v[$fieldsArr[$n]['display']] = implode(',', array_intersect_key($result[$n], $curr));
  239. }
  240. }
  241. }
  242. return $items;
  243. }
  244. }
  245. if (!function_exists('var_export_short')) {
  246. /**
  247. * 使用短标签打印或返回数组结构
  248. * @param mixed $data
  249. * @param boolean $return 是否返回数据
  250. * @return string
  251. */
  252. function var_export_short($data, $return = true)
  253. {
  254. return var_export($data, $return);
  255. $replaced = [];
  256. $count = 0;
  257. //判断是否是对象
  258. if (is_resource($data) || is_object($data)) {
  259. return var_export($data, $return);
  260. }
  261. //判断是否有特殊的键名
  262. $specialKey = false;
  263. array_walk_recursive($data, function (&$value, &$key) use (&$specialKey) {
  264. if (is_string($key) && (stripos($key, "\n") !== false || stripos($key, "array (") !== false)) {
  265. $specialKey = true;
  266. }
  267. });
  268. if ($specialKey) {
  269. return var_export($data, $return);
  270. }
  271. array_walk_recursive($data, function (&$value, &$key) use (&$replaced, &$count, &$stringcheck) {
  272. if (is_object($value) || is_resource($value)) {
  273. $replaced[$count] = var_export($value, true);
  274. $value = "##<{$count}>##";
  275. } else {
  276. if (is_string($value) && (stripos($value, "\n") !== false || stripos($value, "array (") !== false)) {
  277. $index = array_search($value, $replaced);
  278. if ($index === false) {
  279. $replaced[$count] = var_export($value, true);
  280. $value = "##<{$count}>##";
  281. } else {
  282. $value = "##<{$index}>##";
  283. }
  284. }
  285. }
  286. $count++;
  287. });
  288. $dump = var_export($data, true);
  289. $dump = preg_replace('#(?:\A|\n)([ ]*)array \(#i', '[', $dump); // Starts
  290. $dump = preg_replace('#\n([ ]*)\),#', "\n$1],", $dump); // Ends
  291. $dump = preg_replace('#=> \[\n\s+\],\n#', "=> [],\n", $dump); // Empties
  292. $dump = preg_replace('#\)$#', "]", $dump); //End
  293. if ($replaced) {
  294. $dump = preg_replace_callback("/'##<(\d+)>##'/", function ($matches) use ($replaced) {
  295. return isset($replaced[$matches[1]]) ? $replaced[$matches[1]] : "''";
  296. }, $dump);
  297. }
  298. if ($return === true) {
  299. return $dump;
  300. } else {
  301. echo $dump;
  302. }
  303. }
  304. }
  305. if (!function_exists('letter_avatar')) {
  306. /**
  307. * 首字母头像
  308. * @param $text
  309. * @return string
  310. */
  311. function letter_avatar($text)
  312. {
  313. $total = unpack('L', hash('adler32', $text, true))[1];
  314. $hue = $total % 360;
  315. list($r, $g, $b) = hsv2rgb($hue / 360, 0.3, 0.9);
  316. $bg = "rgb({$r},{$g},{$b})";
  317. $color = "#ffffff";
  318. $first = mb_strtoupper(mb_substr($text, 0, 1));
  319. $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>');
  320. $value = 'data:image/svg+xml;base64,' . $src;
  321. return $value;
  322. }
  323. }
  324. if (!function_exists('hsv2rgb')) {
  325. function hsv2rgb($h, $s, $v)
  326. {
  327. $r = $g = $b = 0;
  328. $i = floor($h * 6);
  329. $f = $h * 6 - $i;
  330. $p = $v * (1 - $s);
  331. $q = $v * (1 - $f * $s);
  332. $t = $v * (1 - (1 - $f) * $s);
  333. switch ($i % 6) {
  334. case 0:
  335. $r = $v;
  336. $g = $t;
  337. $b = $p;
  338. break;
  339. case 1:
  340. $r = $q;
  341. $g = $v;
  342. $b = $p;
  343. break;
  344. case 2:
  345. $r = $p;
  346. $g = $v;
  347. $b = $t;
  348. break;
  349. case 3:
  350. $r = $p;
  351. $g = $q;
  352. $b = $v;
  353. break;
  354. case 4:
  355. $r = $t;
  356. $g = $p;
  357. $b = $v;
  358. break;
  359. case 5:
  360. $r = $v;
  361. $g = $p;
  362. $b = $q;
  363. break;
  364. }
  365. return [
  366. floor($r * 255),
  367. floor($g * 255),
  368. floor($b * 255)
  369. ];
  370. }
  371. }
  372. if (!function_exists('check_nav_active')) {
  373. /**
  374. * 检测会员中心导航是否高亮
  375. */
  376. function check_nav_active($url, $classname = 'active')
  377. {
  378. $auth = \app\common\library\Auth::instance();
  379. $requestUrl = $auth->getRequestUri();
  380. $url = ltrim($url, '/');
  381. return $requestUrl === str_replace(".", "/", $url) ? $classname : '';
  382. }
  383. }
  384. if (!function_exists('check_cors_request')) {
  385. /**
  386. * 跨域检测
  387. */
  388. function check_cors_request()
  389. {
  390. if (isset($_SERVER['HTTP_ORIGIN']) && $_SERVER['HTTP_ORIGIN']) {
  391. $info = parse_url($_SERVER['HTTP_ORIGIN']);
  392. $domainArr = explode(',', config('fastadmin.cors_request_domain'));
  393. $domainArr[] = request()->host(true);
  394. if (in_array("*", $domainArr) || in_array($_SERVER['HTTP_ORIGIN'], $domainArr) || (isset($info['host']) && in_array($info['host'], $domainArr))) {
  395. header("Access-Control-Allow-Origin: " . $_SERVER['HTTP_ORIGIN']);
  396. } else {
  397. $response = Response::create('跨域检测无效', 'html', 403);
  398. throw new HttpResponseException($response);
  399. }
  400. header('Access-Control-Allow-Credentials: true');
  401. header('Access-Control-Max-Age: 86400');
  402. if ($_SERVER['REQUEST_METHOD'] == 'OPTIONS') {
  403. if (isset($_SERVER['HTTP_ACCESS_CONTROL_REQUEST_METHOD'])) {
  404. header("Access-Control-Allow-Methods: GET, POST, PUT, DELETE, OPTIONS");
  405. }
  406. if (isset($_SERVER['HTTP_ACCESS_CONTROL_REQUEST_HEADERS'])) {
  407. header("Access-Control-Allow-Headers: {$_SERVER['HTTP_ACCESS_CONTROL_REQUEST_HEADERS']}");
  408. }
  409. $response = Response::create('', 'html');
  410. throw new HttpResponseException($response);
  411. }
  412. }
  413. }
  414. }
  415. if (!function_exists('xss_clean')) {
  416. /**
  417. * 清理XSS
  418. */
  419. function xss_clean($content, $is_image = false)
  420. {
  421. return \app\common\library\Security::instance()->xss_clean($content, $is_image);
  422. }
  423. }
  424. if (!function_exists('check_ip_allowed')) {
  425. /**
  426. * 检测IP是否允许
  427. * @param string $ip IP地址
  428. */
  429. function check_ip_allowed($ip = null)
  430. {
  431. $ip = is_null($ip) ? request()->ip() : $ip;
  432. $forbiddenipArr = config('site.forbiddenip');
  433. $forbiddenipArr = !$forbiddenipArr ? [] : $forbiddenipArr;
  434. $forbiddenipArr = is_array($forbiddenipArr) ? $forbiddenipArr : array_filter(explode("\n", str_replace("\r\n", "\n", $forbiddenipArr)));
  435. if ($forbiddenipArr && \Symfony\Component\HttpFoundation\IpUtils::checkIp($ip, $forbiddenipArr)) {
  436. $response = Response::create('请求无权访问', 'html', 403);
  437. throw new HttpResponseException($response);
  438. }
  439. }
  440. }
  441. function payment(User $user){
  442. static $payment=[];
  443. if(isset($payment[$user['type']])){
  444. return $payment[$user['type']];
  445. }
  446. if($user['type']==1){
  447. $appid=config('site.user_appid');
  448. }else{
  449. $appid=config('site.sender_appid');
  450. }
  451. $cert=config('site.mch_cert');
  452. $key=config('site.mch_key');
  453. $cert_path=RUNTIME_PATH.'/mch_cert.pem';
  454. $key_path=RUNTIME_PATH.'/key';
  455. file_put_contents($cert_path,$cert);
  456. file_put_contents($key_path,$key);
  457. $config = [
  458. // 必要配置
  459. 'app_id' => $appid,
  460. 'mch_id' => config('site.mch_id'),
  461. 'key' => config('site.mch_secret'),
  462. // 如需使用敏感接口(如退款、发送红包等)需要配置 API 证书路径(登录商户平台下载 API 证书)
  463. 'cert_path' => $cert_path, // XXX: 绝对路径!!!!
  464. 'key_path' => $key_path, // XXX: 绝对路径!!!!
  465. 'notify_url' => '默认的订单回调地址', // 你也可以在下单时单独设置来想覆盖它
  466. ];
  467. $p=Factory::payment($config);
  468. $payment[$user['type']]=$p;
  469. return $p;
  470. }
  471. function fullUrl($url){
  472. if(parse_url($url,PHP_URL_SCHEME)){
  473. return $url;
  474. }
  475. $url=request()->scheme().'://'.request()->host(true).$url;
  476. return $url;
  477. }
  478. function throw_user($msg){
  479. throw new \app\UserException($msg);
  480. }
  481. /**
  482. * 生成订单号
  483. * @param string $prefix
  484. * @return string
  485. */
  486. function order_no($prefix=''){
  487. return time().(mt_rand(10,99));
  488. }
  489. function tm(){
  490. static $ins;
  491. if(!$ins) {
  492. $key = config('site.tmap_key');
  493. $ins = TencentMap::instance();
  494. $ins->setKey($key);
  495. $ins->setSecretKey(config('site.tmap_sk'));
  496. }
  497. return $ins;
  498. }
  499. function dd(...$params){
  500. foreach ($params as $param){
  501. dump($param);
  502. }
  503. exit;
  504. }
  505. function ll_distance($lng1, $lat1, $lng2, $lat2) {
  506. // 将角度转为狐度
  507. $radLat1 = deg2rad($lat1); //deg2rad()函数将角度转换为弧度
  508. $radLat2 = deg2rad($lat2);
  509. $radLng1 = deg2rad($lng1);
  510. $radLng2 = deg2rad($lng2);
  511. $a = $radLat1 - $radLat2;
  512. $b = $radLng1 - $radLng2;
  513. $s = 2 * asin(sqrt(pow(sin($a / 2), 2) + cos($radLat1) * cos($radLat2) * pow(sin($b / 2), 2))) * 6378.137;
  514. return bcadd(0,$s,2);
  515. }
  516. function user_log($dir,$content){
  517. $log_dir=RUNTIME_PATH.'/'.$dir;
  518. if(!is_dir($log_dir)){
  519. mkdir($log_dir,0777,true);
  520. }
  521. $filename=date('Y-m-d').'.log';
  522. if(is_array($content)){
  523. $content=json_encode($content,JSON_UNESCAPED_UNICODE);
  524. }
  525. file_put_contents($log_dir.'/'.$filename,date('Y-m-d H:i:s ').$content.PHP_EOL,FILE_APPEND);
  526. }
  527. function from($var){
  528. return is_object($var)?clone $var:$var;
  529. }