common.php 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988
  1. <?php
  2. // 应用公共文件
  3. use SingKa\Sms\SkSms;
  4. use GatewayClient\Gateway;
  5. use \utils\Str;
  6. /**
  7. * 框架内部默认ajax返回
  8. * @param string $msg 提示信息
  9. * @param string $redirect 重定向类型 current|parent|''
  10. * @param string $alert 父层弹框信息
  11. * @param bool $close 是否关闭当前层
  12. * @param string $url 重定向地址
  13. * @param string $data 附加数据
  14. * @param int $code 错误码
  15. * @param array $extend 扩展数据
  16. * @param int $count 总数
  17. */
  18. function success($msg = '操作成功', $data = '', $count = 0, $page = 1, $code = 0)
  19. {
  20. return ret($code, $msg, $data, $count, $page);
  21. }
  22. /**
  23. * 返回警告json信息
  24. */
  25. function warning($msg = '操作失败', $data = '', $count = 0, $page = 1 , $code = 400)
  26. {
  27. return success($msg, $data, $count, $page, $code);
  28. }
  29. /**
  30. * 返回错误json信息
  31. */
  32. function error($msg = '操作失败', $code = 502)
  33. {
  34. return ret($code, '系统错误:'.$msg);
  35. }
  36. /**
  37. * 提前终止信息
  38. */
  39. function shutdown($msg = '禁止访问', $code = 401)
  40. {
  41. exit(json_encode(['code' => $code, 'msg' => $msg, 'data' => []]));
  42. }
  43. /**
  44. * ajax数据返回,规范格式
  45. * @param array $data 返回的数据,默认空数组
  46. * @param string $msg 信息
  47. * @param int $code 错误码,0-未出现错误|其他出现错误
  48. * @param array $extend 扩展数据
  49. */
  50. function ret($code, $msg = "",$data = [],$count=0, $page=0)
  51. {
  52. $ret = ["code" =>$code, "msg" => $msg,'count'=>$count, "data" => $data,'page'=>$page];
  53. return json($ret);
  54. }
  55. /* @param string $string 原文或者密文
  56. * @param string $operation 操作(ENCODE | DECODE), 默认为 DECODE
  57. * @param string $key 密钥
  58. * @param int $expiry 密文有效期, 加密时候有效, 单位 秒,0 为永久有效
  59. * @return string 处理后的 原文或者 经过 base64_encode 处理后的密文
  60. *
  61. * @example
  62. *
  63. * $a = authcode('abc', 'ENCODE', 'key');
  64. * $b = authcode($a, 'DECODE', 'key'); // $b(abc)
  65. *
  66. * $a = authcode('abc', 'ENCODE', 'key', 3600);
  67. * $b = authcode('abc', 'DECODE', 'key'); // 在一个小时内,$b(abc),否则 $b 为空
  68. */
  69. function authcode($string, $operation = 'DECODE', $key = '', $expiry = 3600) {
  70. $ckey_length = 4;
  71. // 随机密钥长度 取值 0-32;
  72. // 加入随机密钥,可以令密文无任何规律,即便是原文和密钥完全相同,加密结果也会每次不同,增大破解难度。
  73. // 取值越大,密文变动规律越大,密文变化 = 16 的 $ckey_length 次方
  74. // 当此值为 0 时,则不产生随机密钥
  75. $key = md5($key ? $key : 'default_key'); //这里可以填写默认key值
  76. $keya = md5(substr($key, 0, 16));
  77. $keyb = md5(substr($key, 16, 16));
  78. $keyc = $ckey_length ? ($operation == 'DECODE' ? substr($string, 0, $ckey_length): substr(md5(microtime()), -$ckey_length)) : '';
  79. $cryptkey = $keya.md5($keya.$keyc);
  80. $key_length = strlen($cryptkey);
  81. $string = $operation == 'DECODE' ? base64_decode(substr($string, $ckey_length)) : sprintf('%010d', $expiry ? $expiry + time() : 0).substr(md5($string.$keyb), 0, 16).$string;
  82. $string_length = strlen($string);
  83. $result = '';
  84. $box = range(0, 255);
  85. $rndkey = array();
  86. for($i = 0; $i <= 255; $i++) {
  87. $rndkey[$i] = ord($cryptkey[$i % $key_length]);
  88. }
  89. for($j = $i = 0; $i < 256; $i++) {
  90. $j = ($j + $box[$i] + $rndkey[$i]) % 256;
  91. $tmp = $box[$i];
  92. $box[$i] = $box[$j];
  93. $box[$j] = $tmp;
  94. }
  95. for($a = $j = $i = 0; $i < $string_length; $i++) {
  96. $a = ($a + 1) % 256;
  97. $j = ($j + $box[$a]) % 256;
  98. $tmp = $box[$a];
  99. $box[$a] = $box[$j];
  100. $box[$j] = $tmp;
  101. $result .= chr(ord($string[$i]) ^ ($box[($box[$a] + $box[$j]) % 256]));
  102. }
  103. if($operation == 'DECODE') {
  104. if((substr($result, 0, 10) == 0 || substr($result, 0, 10) - time() > 0) && substr($result, 10, 16) == substr(md5(substr($result, 26).$keyb), 0, 16)) {
  105. return substr($result, 26);
  106. } else {
  107. return '';
  108. }
  109. } else {
  110. return $keyc.str_replace('=', '', base64_encode($result));
  111. }
  112. }
  113. function ssoTokenEncode($str,$key='lvzhesso',$expire=0){
  114. $ids=encryptIds($str);
  115. return authcode($ids,"ENCODE",$key,$expire);
  116. }
  117. function ssoTokenDecode($str,$key='lvzhesso'){
  118. $ids=authcode($str,"DECODE",$key);
  119. try{
  120. return decryptIds($ids);
  121. }catch(\Exception $e){
  122. return '';
  123. }
  124. }
  125. //id加密
  126. function encryptIds($str)
  127. {
  128. $hash = config('hashids');
  129. return \Hashids\Hashids::instance($hash['length'], $hash['salt'])->encode($str);
  130. }
  131. //id解密
  132. function decryptIds($str)
  133. {
  134. $hash = config('hashids');
  135. return \Hashids\Hashids::instance($hash['length'], $hash['salt'])->decode($str);
  136. }
  137. /**
  138. * 短信发送示例
  139. *
  140. * @mobile 短信发送对象手机号码
  141. * @action 短信发送场景,会自动传入短信模板
  142. * @parme 短信内容数组
  143. */
  144. function sendSms($mobile, $action, $parme)
  145. {
  146. $config = config('sms');
  147. //$this->SmsDefaultDriver是从数据库中读取的短信默认驱动
  148. $driver = $config['driver'] ?: 'aliyun';
  149. $conf=$config[$driver];
  150. $sms = new SkSms($driver, $conf);//传入短信驱动和配置信息
  151. //判断短信发送驱动,非阿里云和七牛云,需将内容数组主键序号化
  152. if ($driver == 'aliyun') {
  153. $result = $sms->$action($mobile, $parme);
  154. } elseif ($driver == 'qiniu') {
  155. $result = $sms->$action([$mobile], $parme);
  156. } elseif ($driver == 'upyun') {
  157. $result = $sms->$action($mobile, implode('|', restoreArray($parme)));
  158. } else {
  159. $result = $sms->$action($mobile, restoreArray($parme));
  160. }
  161. if ($result['code'] == 200) {
  162. $data['code'] = 200;
  163. $data['msg'] = '短信发送成功';
  164. } else {
  165. $data['code'] = $result['code'];
  166. $data['msg'] = $result['msg'];
  167. }
  168. return $data;
  169. }
  170. /**
  171. * 数组主键序号化
  172. *
  173. * @arr 需要转换的数组
  174. */
  175. function restoreArray($arr)
  176. {
  177. if (!is_array($arr)){
  178. return $arr;
  179. }
  180. $c = 0;
  181. $new = [];
  182. foreach ($arr as $key => $value) {
  183. $new[$c] = $value;
  184. $c++;
  185. }
  186. return $new;
  187. }
  188. //密码生成规则
  189. function password_hash_tp($password,$salt)
  190. {
  191. return md5($salt.$password.$salt);
  192. }
  193. // 获取url中的主机名
  194. function getHost($url){
  195. if(!preg_match('/http[s]:\/\/[\w.]+[\w\/]*[\w.]*\??[\w=&\+\%]*/is',$url)){
  196. return '';
  197. }
  198. $search = '~^(([^:/?#]+):)?(//([^/?#]*))?([^?#]*)(\?([^#]*))?(#(.*))?~i';
  199. $url = trim($url);
  200. preg_match_all($search, $url ,$rr);
  201. return $rr[4][0];
  202. }
  203. //根据姓名画头像
  204. function circleAvatar($str,$s,$uid=0,$is_save=0,$save_path=''){
  205. //定义输出为图像类型
  206. header("content-type:image/png");
  207. $str =$str?:"律者";
  208. $uid =$uid?:rand(0,10);
  209. $text=\utils\Str::getLastName($str,2);
  210. $width = $height = $s?:80;
  211. if($width<40 or $width>120){
  212. $width = $height =80;
  213. }
  214. $colors=['#F56C6C','#E6A23C','#fbbd08','#67C23A','#39b54a','#1cbbb4','#409EFF','#6739b6','#e239ff','#e03997'];
  215. $color=hex2rgb($colors[(int)$uid%10]);
  216. $size=$width/4;
  217. $textLeft=($height/2)-$size-$width/10;
  218. if($width<=80){
  219. $text=\utils\Str::getLastName($str,1);
  220. $size=$width/2;
  221. $textLeft=$size/3;
  222. }
  223. //新建图象
  224. $pic=imagecreate($width,$height);
  225. //定义黑白颜色
  226. $background=imagecolorallocate($pic,$color['r'],$color['g'],$color['b']);
  227. $textColor=imagecolorallocate($pic,255,255,255);
  228. imagefill($pic,0,0,$background);//填充背景色
  229. //定义字体
  230. $font=root_path()."/public/static/fonts/PingFangHeavy.ttf";
  231. //写 TTF 文字到图中
  232. imagettftext($pic,$size,0,$textLeft,($height/2)+$size/2,$textColor,$font,$text);
  233. if($is_save){
  234. $path=$save_path."/".$uid.".png";
  235. $dir = pathinfo($path,PATHINFO_DIRNAME);
  236. if(!is_dir($dir)){
  237. $file_create_res = mkdir($dir,0777,true);
  238. if(!$file_create_res){
  239. return false;//没有创建成功
  240. }
  241. }
  242. imagepng($pic,$path);
  243. imagedestroy($pic);
  244. return $path;
  245. }else{
  246. //输出图象
  247. imagepng($pic);
  248. //结束图形,释放内存空间
  249. imagedestroy($pic);
  250. return $pic;
  251. }
  252. }
  253. //头像拼接
  254. function avatarUrl($path, $str = "雨",$uid=0,$s=80)
  255. {
  256. $str = Str::strFilter($str);
  257. if ($path) {
  258. // 判断头像路径中是否有http
  259. if (strpos($path, 'http') !== false) {
  260. $url = $path;
  261. } else {
  262. $url = getDiskUrl() .'/'. ltrim($path,'/') ;
  263. }
  264. }else {
  265. if($str){
  266. $url=request()->domain()."/avatar/".$str.'/'.$s.'/'.$uid;
  267. }else{
  268. $url='';
  269. }
  270. }
  271. return $url;
  272. }
  273. // 获取文件的地址
  274. function getFileUrl($path){
  275. return getDiskUrl() .'/'. ltrim($path,'/') ;
  276. }
  277. /**
  278. * 十六进制 转 RGB
  279. */
  280. function hex2rgb($hexColor)
  281. {
  282. $color = str_replace('#', '', $hexColor);
  283. if (strlen($color) > 3) {
  284. $rgb = array(
  285. 'r' => hexdec(substr($color, 0, 2)),
  286. 'g' => hexdec(substr($color, 2, 2)),
  287. 'b' => hexdec(substr($color, 4, 2))
  288. );
  289. } else {
  290. $color = $hexColor;
  291. $r = substr($color, 0, 1) . substr($color, 0, 1);
  292. $g = substr($color, 1, 1) . substr($color, 1, 1);
  293. $b = substr($color, 2, 1) . substr($color, 2, 1);
  294. $rgb = array(
  295. 'r' => hexdec($r),
  296. 'g' => hexdec($g),
  297. 'b' => hexdec($b)
  298. );
  299. }
  300. return $rgb;
  301. }
  302. /**
  303. * 将数组按字母A-Z排序
  304. * @return [type] [description]
  305. */
  306. function chartSort($array, $field,$isGroup=true,$chart='chart')
  307. {
  308. $newArray = [];
  309. foreach ($array as $k => &$v) {
  310. $v[$chart] = getFirstChart($v[$field]);
  311. $newArray[] = $v;
  312. }
  313. $data = [];
  314. if($isGroup){
  315. foreach ($newArray as $k => $v) {
  316. if (array_key_exists($v[$chart], $data)) {
  317. $data[$v[$chart]][] = $v;
  318. } else {
  319. $data[$v[$chart]] = [];
  320. $data[$v[$chart]][] = $v;
  321. }
  322. }
  323. ksort($data);
  324. }else{
  325. return $newArray;
  326. }
  327. return $data;
  328. }
  329. /**
  330. * 返回取汉字的第一个字的首字母
  331. * @param [type] $str [string]
  332. * @return [type] [strind]
  333. */
  334. function getFirstChart($str)
  335. {
  336. $str = str_replace(' ', '', $str);
  337. // 过滤特殊符号
  338. $str = preg_replace('/[^\x{4e00}-\x{9fa5}A-Za-z0-9]/u', '', $str);
  339. if (empty($str)) {
  340. return '#';
  341. }
  342. $char = ord($str[0]);
  343. if ($char >= ord('A') && $char <= ord('z')) {
  344. return strtoupper($str[0]);
  345. }
  346. $s1 = iconv('UTF-8', 'gb2312//IGNORE', $str);
  347. $s2 = iconv('gb2312', 'UTF-8//IGNORE', $s1);
  348. $s = $s2 == $str ? $s1 : $str;
  349. $asc = ord($s[0]) * 256 + ord($s[1]) - 65536;
  350. if ($asc >= -20319 && $asc <= -20284) return 'A';
  351. if ($asc >= -20283 && $asc <= -19776) return 'B';
  352. if ($asc >= -19775 && $asc <= -19219) return 'C';
  353. if ($asc >= -19218 && $asc <= -18711) return 'D';
  354. if ($asc >= -18710 && $asc <= -18527) return 'E';
  355. if ($asc >= -18526 && $asc <= -18240) return 'F';
  356. if ($asc >= -18239 && $asc <= -17923) return 'G';
  357. if ($asc >= -17922 && $asc <= -17418) return 'H';
  358. if ($asc >= -17417 && $asc <= -16475) return 'J';
  359. if ($asc >= -16474 && $asc <= -16213) return 'K';
  360. if ($asc >= -16212 && $asc <= -15641) return 'L';
  361. if ($asc >= -15640 && $asc <= -15166) return 'M';
  362. if ($asc >= -15165 && $asc <= -14923) return 'N';
  363. if ($asc >= -14922 && $asc <= -14915) return 'O';
  364. if ($asc >= -14914 && $asc <= -14631) return 'P';
  365. if ($asc >= -14630 && $asc <= -14150) return 'Q';
  366. if ($asc >= -14149 && $asc <= -14091) return 'R';
  367. if ($asc >= -14090 && $asc <= -13319) return 'S';
  368. if ($asc >= -13318 && $asc <= -12839) return 'T';
  369. if ($asc >= -12838 && $asc <= -12557) return 'W';
  370. if ($asc >= -12556 && $asc <= -11848) return 'X';
  371. if ($asc >= -11847 && $asc <= -11056) return 'Y';
  372. if ($asc >= -11055 && $asc <= -10247) return 'Z';
  373. return "#";
  374. }
  375. // 拼接聊天对象
  376. function chat_identify($from_user,$to_user){
  377. $identify=[$from_user,$to_user];
  378. sort($identify);
  379. return implode('-',$identify);
  380. }
  381. //数组中获取ID字符串
  382. function arrayToString($array,$field,$isStr=true){
  383. $idArr = [];
  384. foreach ($array as $k => $v) {
  385. if(is_array($field)){
  386. foreach($field as $val){
  387. $idArr[]=$v[$val];
  388. }
  389. }else{
  390. $idArr[] = $v[$field];
  391. }
  392. }
  393. if ($isStr) {
  394. $idStr = implode(',', $idArr);
  395. return $idStr;
  396. } else {
  397. return $idArr;
  398. }
  399. }
  400. // 根据文件后缀进行分类
  401. function getFileType($ext,$rst=false){
  402. $ext=strtolower($ext);
  403. $image=['jpg','jpeg','png','bmp','gif'];
  404. $radio=['mp3','wav','wmv','amr'];
  405. $video=['mp4','3gp','avi','m2v','mkv','mov'];
  406. $doc=['ppt','pptx','doc','docx','xls','xlsx','pdf','txt','md'];
  407. $msgType='file';
  408. if(in_array($ext,$doc)){
  409. $fileType=1;
  410. }elseif(in_array($ext,$image)){
  411. $fileType=2;
  412. $msgType='image';
  413. }elseif(in_array($ext,$radio)){
  414. $fileType=3;
  415. $msgType='voice';
  416. }elseif(in_array($ext,$video)){
  417. $fileType=4;
  418. $msgType='video';
  419. }else{
  420. $fileType=9;
  421. }
  422. if($rst){
  423. return $msgType;
  424. }else{
  425. return $fileType;
  426. }
  427. }
  428. /**
  429. * 二位数组排序
  430. * $array 需要排序的数组
  431. * $sort_key 需要排序的字段
  432. * $sort_order 正序还是倒序
  433. * $sort_type 排序的类型:数字,字母
  434. */
  435. function sortArray($arrays, $sort_key, $sort_order = SORT_ASC, $sort_type = SORT_NUMERIC)
  436. {
  437. if (is_array($arrays)) {
  438. foreach ($arrays as $array) {
  439. if (is_array($array)) {
  440. $key_arrays[] = $array[$sort_key];
  441. } else {
  442. return false;
  443. }
  444. }
  445. } else {
  446. return false;
  447. }
  448. array_multisort($key_arrays, $sort_order, $sort_type, $arrays);
  449. return $arrays;
  450. }
  451. //gateway向web页面推送消息
  452. function wsSendMsg($user, $type, $data, $isGroup=0)
  453. {
  454. $message = json_encode([
  455. 'type' => $type,
  456. 'time' => time(),
  457. 'data' => $data
  458. ]);
  459. try{
  460. Gateway::$registerAddress = config('gateway.registerAddress');
  461. if (!$user) {
  462. Gateway::sendToAll($message);
  463. } else {
  464. if (!$isGroup) {
  465. $send = 'sendToUid';
  466. // 如果是单聊和语音通话需要使用unipush推送
  467. $event=$data['extends']['event'] ?? '';
  468. if(in_array($type,['simple']) || ($event=='calling' && $type=='webrtc')){
  469. unipush($user,$data);
  470. }
  471. } else {
  472. $send = "sendToGroup";
  473. }
  474. Gateway::$send($user, $message);
  475. }
  476. }catch(\Exception $e){
  477. //忽略错误
  478. }
  479. }
  480. // 绑定unipush的cid
  481. function bindCid($uid,$cid){
  482. $url=env('unipush.url','');
  483. if(!$url){
  484. return false;
  485. }
  486. $data=[
  487. 'type'=>'bindCid',
  488. 'alias'=>[[
  489. 'cid'=>$cid,
  490. 'alias'=>$uid
  491. ]]
  492. ];
  493. try{
  494. $data=json_encode($data);
  495. utils\Curl::curl_post($url,$data,true,["Content-Type: application/json"]);
  496. }catch(\Exception $e){
  497. //忽略错误
  498. }
  499. }
  500. // unipush推送
  501. function unipush($toUser,$data){
  502. $url=env('unipush.url','');
  503. if(!$url){
  504. return false;
  505. }
  506. $content='';
  507. if($data['type']=='text'){
  508. $content=Str::subStr($data['content'],0,50);
  509. }else{
  510. $content=getMsgType($data['type'],$data['extends']['type'] ?? 0);
  511. }
  512. // 这个推送不需要发给发送人
  513. $fromUser=$data['fromUser']['id'] ?? '';
  514. if(is_array($toUser)){
  515. $toUser=array_diff($toUser,[$fromUser]);
  516. }
  517. $is_force=env('unipush.is_force',false);
  518. $data=[
  519. 'type'=>'push',
  520. 'toUser'=>$toUser,
  521. 'title'=>$data['fromUser']['displayName'],
  522. 'content'=>$content,
  523. 'force_notification'=>$is_force,
  524. 'payload'=>$data
  525. ];
  526. try{
  527. $data=json_encode($data);
  528. utils\Curl::curl_post($url,$data,true,["Content-Type: application/json"]);
  529. }catch(\Exception $e){
  530. //忽略错误
  531. }
  532. }
  533. // 预览文件
  534. function previewUrl($url){
  535. $previewUrl=env('preview.own','');
  536. // $preview='';
  537. // $suffix=explode('.',$url);
  538. // $ext=$suffix[count($suffix)-1];
  539. // $media=['jpg','jpeg','png','bmp','gif','pdf','mp3','wav','wmv','amr','mp4','3gp','avi','m2v','mkv','mov','webp'];
  540. // $doc=['ppt','pptx','doc','docx','xls','xlsx','pdf'];
  541. // if(in_array($ext,$media) && $previewConf['own']){
  542. // $preview=$previewConf['own']."view.html?src=".$url;
  543. // }elseif(in_array($ext,$doc) && $previewConf['yzdcs']){
  544. // $preview=$previewConf['yzdcs'].'?k='.$previewConf['keycode'].'&url='.$url;
  545. // }else{
  546. // }
  547. if($previewUrl){
  548. $preview=$previewUrl.$url;
  549. }else{
  550. $preview=rtrim(request()->domain(),'/')."/view.html?src=".$url;
  551. }
  552. return $preview;
  553. }
  554. /**
  555. * 解析sql语句
  556. * @param string $content sql内容
  557. * @param int $limit 如果为1,则只返回一条sql语句,默认返回所有
  558. * @param array $prefix 替换表前缀
  559. * @return array|string 除去注释之后的sql语句数组或一条语句
  560. */
  561. function parse_sql($sql = '', $limit = 0, $prefix = []) {
  562. // 被替换的前缀
  563. $from = '';
  564. // 要替换的前缀
  565. $to = '';
  566. // 替换表前缀
  567. if (!empty($prefix)) {
  568. $to = current($prefix);
  569. $from = current(array_flip($prefix));
  570. }
  571. if ($sql != '') {
  572. // 纯sql内容
  573. $pure_sql = [];
  574. // 多行注释标记
  575. $comment = false;
  576. // 按行分割,兼容多个平台
  577. $sql = str_replace(["\r\n", "\r"], "\n", $sql);
  578. $sql = explode("\n", trim($sql));
  579. // 循环处理每一行
  580. foreach ($sql as $key => $line) {
  581. // 跳过空行
  582. if ($line == '') {
  583. continue;
  584. }
  585. // 跳过以#或者--开头的单行注释
  586. if (preg_match("/^(#|--)/", $line)) {
  587. continue;
  588. }
  589. // 跳过以/**/包裹起来的单行注释
  590. if (preg_match("/^\/\*(.*?)\*\//", $line)) {
  591. continue;
  592. }
  593. // 多行注释开始
  594. if (substr($line, 0, 2) == '/*') {
  595. $comment = true;
  596. continue;
  597. }
  598. // 多行注释结束
  599. if (substr($line, -2) == '*/') {
  600. $comment = false;
  601. continue;
  602. }
  603. // 多行注释没有结束,继续跳过
  604. if ($comment) {
  605. continue;
  606. }
  607. // 替换表前缀
  608. if ($from != '') {
  609. $line = str_replace('`'.$from, '`'.$to, $line);
  610. }
  611. if ($line == 'BEGIN;' || $line =='COMMIT;') {
  612. continue;
  613. }
  614. // sql语句
  615. array_push($pure_sql, $line);
  616. }
  617. // 只返回一条语句
  618. if ($limit == 1) {
  619. return implode("",$pure_sql);
  620. }
  621. // 以数组形式返回sql语句
  622. $pure_sql = implode("\n",$pure_sql);
  623. $pure_sql = explode(";\n", $pure_sql);
  624. return $pure_sql;
  625. } else {
  626. return $limit == 1 ? '' : [];
  627. }
  628. }
  629. /**
  630. * 更新或添加环境变量
  631. *
  632. * @param string $key 环境变量的键
  633. * @param string $value 环境变量的值
  634. * @return bool 成功返回 true,失败返回 false
  635. */
  636. function updateEnv($key, $value)
  637. {
  638. $envFile = app()->getRootPath() . '.env';
  639. if (!file_exists($envFile) || !is_writable($envFile)){
  640. return false;
  641. }
  642. // 读取 .env 文件内容
  643. $envContent = file_get_contents($envFile);
  644. $keyPattern = preg_quote($key, '/');
  645. $pattern = "/^{$keyPattern}=(.*)\$/m";
  646. if (preg_match($pattern, $envContent)) {
  647. // 如果找到了键值对,替换其值
  648. $replacement = "{$key}={$value}";
  649. $newEnvContent = preg_replace($pattern, $replacement, $envContent);
  650. } else {
  651. // 如果没有找到键值对,添加新的键值对
  652. $newEnvContent = $envContent . PHP_EOL . "{$key}={$value}";
  653. }
  654. // 保存更新后的 .env 文件内容
  655. return file_put_contents($envFile, $newEnvContent) !== false;
  656. }
  657. // 获取文件的域名
  658. function getDiskUrl(){
  659. $disk=env('filesystem.driver','local');
  660. $url=request()->domain();
  661. if($disk=='aliyun'){
  662. $url=env('filesystem.aliyun_url','');
  663. }elseif($disk=='qiniu'){
  664. $url=env('filesystem.qiniu_url','');
  665. }elseif($disk=='qcloud'){
  666. $url=env('filesystem.qcloud_cdn','');
  667. }
  668. $url=rtrim($url,'/');
  669. return $url;
  670. }
  671. /**
  672. * 合成图片
  673. * @param array $pic_list [图片列表数组]
  674. * @param boolean $is_save [是否保存,true保存,false输出到浏览器]
  675. * @param string $save_path [保存路径]
  676. * @return boolean|string
  677. */
  678. function getGroupAvatar($pic_list=array(),$is_save=false,$save_path=''){
  679. //验证参数
  680. if(empty($pic_list) || empty($save_path)){
  681. return false;
  682. }
  683. if($is_save){
  684. //如果需要保存,需要传保存地址
  685. if(empty($save_path)){
  686. return false;
  687. }
  688. }
  689. // 只操作前9个图片
  690. $pic_list = array_slice($pic_list, 0, 9);
  691. //设置背景图片宽高
  692. $bg_w = 150; // 背景图片宽度
  693. $bg_h = 150; // 背景图片高度
  694. //新建一个真彩色图像作为背景
  695. $background = imagecreatetruecolor($bg_w,$bg_h);
  696. //为真彩色画布创建白灰色背景,再设置为透明
  697. $color = imagecolorallocate($background, 202, 201, 201);
  698. imagefill($background, 0, 0, $color);
  699. imageColorTransparent($background, $color);
  700. //根据图片个数设置图片位置
  701. $pic_count = count($pic_list);
  702. $lineArr = array();//需要换行的位置
  703. $space_x = 3;
  704. $space_y = 3;
  705. $line_x = 0;
  706. switch($pic_count) {
  707. case 1: // 正中间
  708. $start_x = intval($bg_w/4); // 开始位置X
  709. $start_y = intval($bg_h/4); // 开始位置Y
  710. $pic_w = intval($bg_w/2); // 宽度
  711. $pic_h = intval($bg_h/2); // 高度
  712. break;
  713. case 2: // 中间位置并排
  714. $start_x = 2;
  715. $start_y = intval($bg_h/4) + 3;
  716. $pic_w = intval($bg_w/2) - 5;
  717. $pic_h = intval($bg_h/2) - 5;
  718. $space_x = 5;
  719. break;
  720. case 3:
  721. $start_x = 40; // 开始位置X
  722. $start_y = 5; // 开始位置Y
  723. $pic_w = intval($bg_w/2) - 5; // 宽度
  724. $pic_h = intval($bg_h/2) - 5; // 高度
  725. $lineArr = array(2);
  726. $line_x = 4;
  727. break;
  728. case 4:
  729. $start_x = 4; // 开始位置X
  730. $start_y = 5; // 开始位置Y
  731. $pic_w = intval($bg_w/2) - 5; // 宽度
  732. $pic_h = intval($bg_h/2) - 5; // 高度
  733. $lineArr = array(3);
  734. $line_x = 4;
  735. break;
  736. case 5:
  737. $start_x = 30; // 开始位置X
  738. $start_y = 30; // 开始位置Y
  739. $pic_w = intval($bg_w/3) - 5; // 宽度
  740. $pic_h = intval($bg_h/3) - 5; // 高度
  741. $lineArr = array(3);
  742. $line_x = 5;
  743. break;
  744. case 6:
  745. $start_x = 5; // 开始位置X
  746. $start_y = 30; // 开始位置Y
  747. $pic_w = intval($bg_w/3) - 5; // 宽度
  748. $pic_h = intval($bg_h/3) - 5; // 高度
  749. $lineArr = array(4);
  750. $line_x = 5;
  751. break;
  752. case 7:
  753. $start_x = 53; // 开始位置X
  754. $start_y = 5; // 开始位置Y
  755. $pic_w = intval($bg_w/3) - 5; // 宽度
  756. $pic_h = intval($bg_h/3) - 5; // 高度
  757. $lineArr = array(2,5);
  758. $line_x = 5;
  759. break;
  760. case 8:
  761. $start_x = 30; // 开始位置X
  762. $start_y = 5; // 开始位置Y
  763. $pic_w = intval($bg_w/3) - 5; // 宽度
  764. $pic_h = intval($bg_h/3) - 5; // 高度
  765. $lineArr = array(3,6);
  766. $line_x = 5;
  767. break;
  768. case 9:
  769. $start_x = 5; // 开始位置X
  770. $start_y = 5; // 开始位置Y
  771. $pic_w = intval($bg_w/3) - 5; // 宽度
  772. $pic_h = intval($bg_h/3) - 5; // 高度
  773. $lineArr = array(4,7);
  774. $line_x = 5;
  775. break;
  776. }
  777. foreach( $pic_list as $k=>$pic_path ) {
  778. $kk = $k + 1;
  779. if ( in_array($kk, $lineArr) ) {
  780. $start_x = $line_x;
  781. $start_y = $start_y + $pic_h + $space_y;
  782. }
  783. //获取图片文件扩展类型和mime类型,判断是否是正常图片文件
  784. //非正常图片文件,相应位置空着,跳过处理
  785. $image_mime_info = @getimagesize($pic_path);
  786. if($image_mime_info && !empty($image_mime_info['mime'])){
  787. $mime_arr = explode('/',$image_mime_info['mime']);
  788. if(is_array($mime_arr) && $mime_arr[0] == 'image' && !empty($mime_arr[1])){
  789. switch($mime_arr[1]) {
  790. case 'jpg':
  791. case 'jpeg':
  792. $imagecreatefromjpeg = 'imagecreatefromjpeg';
  793. break;
  794. case 'png':
  795. $imagecreatefromjpeg = 'imagecreatefrompng';
  796. break;
  797. case 'gif':
  798. default:
  799. $imagecreatefromjpeg = 'imagecreatefromstring';
  800. $pic_path = file_get_contents($pic_path);
  801. break;
  802. }
  803. //创建一个新图像
  804. $resource = $imagecreatefromjpeg($pic_path);
  805. //将图像中的一块矩形区域拷贝到另一个背景图像中
  806. // $start_x,$start_y 放置在背景中的起始位置
  807. // 0,0 裁剪的源头像的起点位置
  808. // $pic_w,$pic_h copy后的高度和宽度
  809. imagecopyresized($background,$resource,$start_x,$start_y,0,0,$pic_w,$pic_h,imagesx($resource),imagesy($resource));
  810. }
  811. }
  812. // 最后两个参数为原始图片宽度和高度,倒数两个参数为copy时的图片宽度和高度
  813. $start_x = $start_x + $pic_w + $space_x;
  814. }
  815. if($is_save){
  816. $dir = pathinfo($save_path,PATHINFO_DIRNAME);
  817. if(!is_dir($dir)){
  818. $file_create_res = mkdir($dir,0777,true);
  819. if(!$file_create_res){
  820. return false;//没有创建成功
  821. }
  822. }
  823. $res = imagejpeg($background,$save_path);
  824. imagedestroy($background);
  825. if($res){
  826. return true;
  827. }else{
  828. return false;
  829. }
  830. }else{
  831. //直接输出
  832. header("Content-type: image/jpg");
  833. imagejpeg($background);
  834. imagedestroy($background);
  835. }
  836. }
  837. /**
  838. * 获取一个唯一token
  839. * @return string
  840. */
  841. function getOnlyToken()
  842. {
  843. return md5(uniqid(md5(microtime(true)), true));
  844. }
  845. // 设置排序规则
  846. function orderBy($field, $type, $prefix = '', $default = 'update_time')
  847. {
  848. $type=is_numeric($type)?($type==1?'asc':'desc'):$type;
  849. if ($field) {
  850. $order = $prefix . $field . ' ' . $type;
  851. } else {
  852. $order = $prefix . $default . ' desc';
  853. }
  854. return $order;
  855. }
  856. // 获取文件后缀图片
  857. function getExtUrl($path){
  858. $ext=explode('.',$path);
  859. $ext=end($ext);
  860. // 如果是图片文件,就直接返回图片地址
  861. $image=['jpg','jpeg','png','bmp','gif','webp'];
  862. if(in_array($ext,$image)){
  863. return getFileUrl($path);
  864. }
  865. $extUrl='/static/img/ext/'.strtoupper($ext).'.png';
  866. // 判断文件是否存在
  867. if(!file_exists(public_path().$extUrl)){
  868. $extUrl='/static/img/ext/folder.png';
  869. }
  870. return rtrim(request()->domain(),'/').$extUrl;
  871. }
  872. // 字符串内容加解密函数
  873. function str_encipher($str,$encode=true,$key=''){
  874. if($key==''){
  875. $key=config('app.aes_chat_key');
  876. }
  877. if($key==''){
  878. return $str;
  879. }
  880. if($encode){
  881. $s=\utils\Aes::encrypt($str,$key);
  882. }else{
  883. $s=\utils\Aes::decrypt($str,$key) ?:'';
  884. }
  885. return $s;
  886. }
  887. // 推送时获取消息的类型
  888. function getMsgType($type,$callVideo=false){
  889. $msgName='[暂不支持的消息类型]';
  890. switch($type){
  891. case 'image':
  892. $msgName='[图片]';
  893. break;
  894. case 'voice':
  895. $msgName='[语音]';
  896. break;
  897. case 'video':
  898. $msgName='[视频]';
  899. break;
  900. case 'file':
  901. $msgName='[文件]';
  902. break;
  903. case 'webrtc':
  904. if($callVideo){
  905. $msgName='[正在请求与您视频通话]';
  906. }else{
  907. $msgName='[正在请求与您语音通话]';
  908. }
  909. break;
  910. }
  911. return $msgName;
  912. }
  913. // 获取app的下载链接
  914. function getAppDowmUrl($platform='andriod'){
  915. $config=config('version.'.$platform);
  916. $name=config('version.app_name');
  917. if($platform=='windows'){
  918. $packageName=$name."_Setup_".$config['version'].".exe";
  919. $path="/downloadApp/windows";
  920. }elseif($platform=='mac'){
  921. $packageName=$name."_Setup_".$config['version'].".dmg";
  922. $path="/downloadApp/mac";
  923. }else{
  924. $packageName=$name."_Setup_".$config['version'].".apk";
  925. $path="/downloadApp/andriod";
  926. }
  927. if(is_file(PACKAGE_PATH . $packageName)){
  928. return rtrim(request()->domain(),'/').$path;
  929. }else{
  930. return '';
  931. }
  932. }