common.php 32 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251
  1. <?php
  2. // +—————————————————————————————————————————————————————————————————————
  3. // | Created by Yunbao
  4. // +—————————————————————————————————————————————————————————————————————
  5. // | Copyright (c) 2013~2022 http://www.yunbaokj.com All rights reserved.
  6. // +—————————————————————————————————————————————————————————————————————
  7. // | Author: https://gitee.com/yunbaokeji
  8. // +—————————————————————————————————————————————————————————————————————
  9. // | Date: 2022-02-17
  10. // +—————————————————————————————————————————————————————————————————————
  11. use think\Db;
  12. use cmf\lib\Storage;
  13. // 应用公共文件
  14. error_reporting(E_ALL);
  15. //ini_set('display_errors','On');
  16. //error_reporting(E_ERROR | E_WARNING | E_PARSE);
  17. require_once dirname(__FILE__).'/redis.php';
  18. /* 去除NULL 判断空处理 主要针对字符串类型*/
  19. function checkNull($checkstr){
  20. $checkstr=urldecode($checkstr);
  21. $checkstr=htmlspecialchars($checkstr);
  22. $checkstr=trim($checkstr);
  23. if( strstr($checkstr,'null') || (!$checkstr && $checkstr!=0 ) ){
  24. $str='';
  25. }else{
  26. $str=$checkstr;
  27. }
  28. return $str;
  29. }
  30. /* 去除emoji表情 */
  31. function filterEmoji($str){
  32. $str = preg_replace_callback(
  33. '/./u',
  34. function (array $match) {
  35. return strlen($match[0]) >= 4 ? '' : $match[0];
  36. },
  37. $str);
  38. return $str;
  39. }
  40. /* 获取公共配置 */
  41. function getConfigPub() {
  42. $key='getConfigPub';
  43. $config=getcaches($key);
  44. if(!$config){
  45. $config=Db::name("option")
  46. ->field('option_value')
  47. ->where("option_name='site_info'")
  48. ->find();
  49. $config=json_decode($config['option_value'],true);
  50. if($config){
  51. setcaches($key,$config);
  52. }
  53. }
  54. if(isset($config['live_time_coin'])){
  55. if(is_array($config['live_time_coin'])){
  56. }else if($config['live_time_coin']){
  57. $config['live_time_coin']=preg_split('/,|,/',$config['live_time_coin']);
  58. }else{
  59. $config['live_time_coin']=array();
  60. }
  61. }else{
  62. $config['live_time_coin']=array();
  63. }
  64. if(isset($config['login_type'])){
  65. if(is_array($config['login_type'])){
  66. }else if($config['login_type']){
  67. $config['login_type']=preg_split('/,|,/',$config['login_type']);
  68. }else{
  69. $config['login_type']=array();
  70. }
  71. }else{
  72. $config['login_type']=array();
  73. }
  74. if(isset($config['live_type'])){
  75. if(is_array($config['live_type'])){
  76. }else if($config['live_type']){
  77. $live_type=preg_split('/,|,/',$config['live_type']);
  78. foreach($live_type as $k=>$v){
  79. $live_type[$k]=preg_split('/;|;/',$v);
  80. }
  81. $config['live_type']=$live_type;
  82. }else{
  83. $config['live_type']=array();
  84. }
  85. }else{
  86. $config['live_type']=array();
  87. }
  88. return $config;
  89. }
  90. /* 获取私密配置 */
  91. function getConfigPri() {
  92. $key='getConfigPri';
  93. $config=getcaches($key);
  94. if(!$config){
  95. $config=Db::name("option")
  96. ->field('option_value')
  97. ->where("option_name='configpri'")
  98. ->find();
  99. $config=json_decode($config['option_value'],true);
  100. if($config){
  101. setcaches($key,$config);
  102. }
  103. }
  104. return $config;
  105. }
  106. /**
  107. * 转化数据库保存的文件路径,为可以访问的url
  108. */
  109. function get_upload_path($file){
  110. if($file==''){
  111. return $file;
  112. }
  113. if(strpos($file,"http")===0){
  114. return $file;
  115. }else if(strpos($file,"/")===0){
  116. $configpub=getConfigPub();
  117. $filepath= $configpub['site'].$file;
  118. return $filepath;
  119. }else{
  120. /*
  121. $fileinfo=explode("_",$file);//上传云存储标识:qiniu:七牛云;
  122. $storage_type=$fileinfo[0];
  123. $start=strlen($storage_type)+1;
  124. if($storage_type=='qiniu'){ //七牛云
  125. $storage = Storage::instance();
  126. $file=substr($file,$start);
  127. return html_entity_decode($storage->getImageUrl($file));
  128. }else{
  129. $style='';
  130. $storage = Storage::instance();
  131. return $storage->getImageUrl($file, $style);
  132. }*/
  133. //minio
  134. $minio_domain_url = 'http://43.239.167.134:9000/';
  135. $storage_type = 'minio';
  136. $start=strlen($storage_type)+1;
  137. if($storage_type=='minio'){ //七牛云
  138. $file=substr($file,$start);
  139. return $minio_domain_url.$file;
  140. }else{
  141. $style='';
  142. $storage = Storage::instance();
  143. return $storage->getImageUrl($file, $style);
  144. }
  145. }
  146. }
  147. /*
  148. 单文件云存储
  149. files 单个文件上传信息(包含键值) $files['file']=$_FILES["file"]
  150. type 文件类型 img图片 video视频 music音乐
  151. */
  152. function adminUploadFiles($files=[]){
  153. // 要上传文件的本地路径
  154. $filePath = $files['file']['tmp_name'];
  155. $minio_domain_url = 'http://43.239.167.134:9000/';
  156. $minio_key = '6kUBnBRda9mes83brwEP';
  157. $minio_secret = 'AEPLazYp82HSMNlua3OCzXFo8rNxSQjgCdHD3bPT';
  158. $ext=strtolower(pathinfo($files['file']['name'], PATHINFO_EXTENSION));
  159. $key = date('Ymd').'/'.uniqid().'.'.$ext;
  160. /* 存放文件的桶 */
  161. $bucket = 'live';
  162. if (!function_exists('Aws\constantly')) {
  163. require CMF_ROOT . 'sdk/aws/aws-autoloader.php';
  164. }
  165. $s3 = new Aws\S3\S3Client([
  166. 'version' => 'latest',
  167. 'region' => 'us-east-1',
  168. 'endpoint' => $minio_domain_url,
  169. 'use_path_style_endpoint' => true,
  170. 'credentials' => [
  171. 'key' => $minio_key,
  172. 'secret' => $minio_secret,
  173. ],
  174. ]);
  175. $result = $s3->putObject([
  176. 'Bucket' => $bucket,
  177. 'Key' => $key,
  178. 'Body' => 'this is the body!',
  179. 'SourceFile' => $filePath,
  180. ]);
  181. return $bucket.'/'.$key;
  182. }
  183. /* 获取等级 */
  184. function getLevelList(){
  185. $key='level';
  186. $level=getcaches($key);
  187. if(!$level){
  188. $level= Db::name("level")->order("level_up asc")->select();
  189. if($level){
  190. setcaches($key,$level);
  191. }else{
  192. delcache($key);
  193. }
  194. }
  195. foreach($level as $k=>$v){
  196. $v['thumb']=get_upload_path($v['thumb']);
  197. $v['thumb_mark']=get_upload_path($v['thumb_mark']);
  198. $v['bg']=get_upload_path($v['bg']);
  199. if($v['colour']){
  200. $v['colour']='#'.$v['colour'];
  201. }else{
  202. $v['colour']='#ffdd00';
  203. }
  204. $level[$k]=$v;
  205. }
  206. return $level;
  207. }
  208. function getLevel($experience){
  209. $level_a=1;
  210. $levelid=1;
  211. $level=getLevelList();
  212. foreach($level as $k=>$v){
  213. if( $v['level_up']>=$experience){
  214. $levelid=$v['levelid'];
  215. break;
  216. }else{
  217. $level_a = $v['levelid'];
  218. }
  219. }
  220. $levelid = $levelid < $level_a ? $level_a:$levelid;
  221. return (string)$levelid;
  222. }
  223. /* 主播等级 */
  224. function getLevelAnchorList(){
  225. $key='levelanchor';
  226. $level=getcaches($key);
  227. if(!$level){
  228. $level= Db::name("level_anchor")->order("level_up asc")->select();
  229. if($level){
  230. setcaches($key,$level);
  231. }else{
  232. delcache($key);
  233. }
  234. }
  235. foreach($level as $k=>$v){
  236. $v['thumb']=get_upload_path($v['thumb']);
  237. $v['thumb_mark']=get_upload_path($v['thumb_mark']);
  238. $v['bg']=get_upload_path($v['bg']);
  239. $level[$k]=$v;
  240. }
  241. return $level;
  242. }
  243. function getLevelAnchor($experience){
  244. $levelid=1;
  245. $level_a=1;
  246. $level=getLevelAnchorList();
  247. foreach($level as $k=>$v){
  248. if( $v['level_up']>=$experience){
  249. $levelid=$v['levelid'];
  250. break;
  251. }else{
  252. $level_a = $v['levelid'];
  253. }
  254. }
  255. $levelid = $levelid < $level_a ? $level_a:$levelid;
  256. return $levelid;
  257. }
  258. /* 用户基本信息 */
  259. function getUserInfo($uid) {
  260. $where['id']=$uid;
  261. $info= Db::name("user")->field("id,user_nicename,avatar,avatar_thumb,sex,signature,consumption,votestotal,province,user_status,city,birthday")->where($where)->find();
  262. if(!$info){
  263. $info['id']=$uid;
  264. $info['user_nicename']='用户不存在';
  265. $info['avatar']='/default.jpg';
  266. $info['avatar_thumb']='/default_thumb.jpg';
  267. $info['sex']='0';
  268. $info['signature']='';
  269. $info['consumption']='0';
  270. $info['votestotal']='0';
  271. $info['province']='';
  272. $info['city']='';
  273. $info['birthday']='';
  274. $info['user_status']='1';
  275. }
  276. if($info){
  277. $info['avatar']=get_upload_path($info['avatar']);
  278. $info['avatar_thumb']=get_upload_path($info['avatar_thumb']);
  279. $info['level']=getLevel($info['consumption']);
  280. $info['level_anchor']=getLevelAnchor($info['votestotal']);
  281. if($info['birthday']){
  282. $info['birthday']=date('Y-m-d',$info['birthday']);
  283. }else{
  284. $info['birthday']='';
  285. }
  286. $token=Db::name("user_token")->where("user_id={$uid}")->value("token");
  287. $info['token']=$token;
  288. }
  289. return $info;
  290. }
  291. /*获取收到礼物数量(tsd) 以及送出的礼物数量(tsc) */
  292. function getgif($uid){
  293. $count=Db::query('select sum(case when touid='.$uid.' then 1 else 0 end) as tsd,sum(case when uid='.$uid.' then 1 else 0 end) as tsc from cmf_user_coinrecord');
  294. return $count;
  295. }
  296. /* 用户信息 含有私密信息 */
  297. function getUserPrivateInfo($uid) {
  298. $where['id']=$uid;
  299. $info= Db::name("user")->field('id,user_login,user_nicename,avatar,avatar_thumb,sex,signature,consumption,votestotal,province,city,coin,votes,birthday,issuper')->where($where)->find();
  300. if($info){
  301. $info['lighttime']="0";
  302. $info['light']=0;
  303. $info['level']=getLevel($info['consumption']);
  304. $info['level_anchor']=getLevelAnchor($info['votestotal']);
  305. $info['avatar']=get_upload_path($info['avatar']);
  306. $info['avatar_thumb']=get_upload_path($info['avatar_thumb']);
  307. if($info['birthday']){
  308. $info['birthday']=date('Y-m-d',$info['birthday']);
  309. }else{
  310. $info['birthday']='';
  311. }
  312. $token=Db::name("user_token")->where("user_id={$uid}")->value("token");
  313. $info['token']=$token;
  314. }
  315. return $info;
  316. }
  317. /* 用户信息 含有私密信息 */
  318. function getUserToken($uid) {
  319. $where['user_id']=$uid;
  320. $info= Db::name("user_token")->field('token')->where($where)->find();
  321. if(!$info){
  322. return '';
  323. }
  324. return $info['token'];
  325. }
  326. /*判断token是否过期*/
  327. function checkToken($uid,$token){
  328. if(!$uid || !$token){
  329. session('uid',null);
  330. session('token',null);
  331. session('user',null);
  332. cookie('uid',null);
  333. cookie('token',null);
  334. return 700;
  335. }
  336. $key="token_".$uid;
  337. $userinfo=getcaches($key);
  338. if(!$userinfo){
  339. $where['user_id']=$uid;
  340. $userinfo=Db::name("user_token")->field('token,expire_time')->where($where)->find();
  341. if($userinfo){
  342. setcaches($key,$userinfo);
  343. }else{
  344. delcache($key);
  345. }
  346. }
  347. if(!$userinfo || $userinfo['token']!=$token || $userinfo['expire_time']<time()){
  348. session('uid',null);
  349. session('token',null);
  350. session('user',null);
  351. cookie('uid',null);
  352. cookie('token',null);
  353. return 700;
  354. }else{
  355. return 0;
  356. }
  357. }
  358. /*前台个人中心判断是否登录*/
  359. function LogIn()
  360. {
  361. $uid=session("uid");
  362. if($uid<=0)
  363. {
  364. header("Location: /");
  365. exit;
  366. }
  367. }
  368. /* 过滤关键词 */
  369. function filterField($field){
  370. $configpri=getConfigPri();
  371. $sensitive_field=$configpri['sensitive_field'];
  372. $sensitive=explode(",",$sensitive_field);
  373. $replace=array();
  374. $preg=array();
  375. foreach($sensitive as $k=>$v){
  376. if($v){
  377. $re='';
  378. $num=mb_strlen($v);
  379. for($i=0;$i<$num;$i++){
  380. $re.='*';
  381. }
  382. $replace[$k]=$re;
  383. $preg[$k]='/'.$v.'/';
  384. }else{
  385. unset($sensitive[$k]);
  386. }
  387. }
  388. return preg_replace($preg,$replace,$field);
  389. }
  390. /* 检验手机号 */
  391. function checkMobile($mobile){
  392. $ismobile = preg_match("/^1[3|4|5|6|7|8|9]\d{9}$/",$mobile);
  393. if($ismobile){
  394. return 1;
  395. }else{
  396. return 0;
  397. }
  398. }
  399. /* 时间差计算 */
  400. function datetime($time){
  401. $cha=time()-$time;
  402. $iz=floor($cha/60);
  403. $hz=floor($iz/60);
  404. $dz=floor($hz/24);
  405. /* 秒 */
  406. $s=$cha%60;
  407. /* 分 */
  408. $i=floor($iz%60);
  409. /* 时 */
  410. $h=floor($hz/24);
  411. /* 天 */
  412. if($cha<60){
  413. return $cha.'秒前';
  414. }else if($iz<60){
  415. return $iz.'分钟前';
  416. }else if($hz<24){
  417. return $hz.'小时'.$i.'分钟前';
  418. }else if($dz<30){
  419. return $dz.'天前';
  420. }else{
  421. return date("Y-m-d",$time);
  422. }
  423. }
  424. /* 时长格式化 */
  425. function getSeconds($time,$type=0){
  426. if(!$time){
  427. return (string)$time;
  428. }
  429. $value = array(
  430. "years" => 0,
  431. "days" => 0,
  432. "hours" => 0,
  433. "minutes" => 0,
  434. "seconds" => 0
  435. );
  436. if($time >= 31556926){
  437. $value["years"] = floor($time/31556926);
  438. $time = ($time%31556926);
  439. }
  440. if($time >= 86400){
  441. $value["days"] = floor($time/86400);
  442. $time = ($time%86400);
  443. }
  444. if($time >= 3600){
  445. $value["hours"] = floor($time/3600);
  446. $time = ($time%3600);
  447. }
  448. if($time >= 60){
  449. $value["minutes"] = floor($time/60);
  450. $time = ($time%60);
  451. }
  452. $value["seconds"] = floor($time);
  453. if($value['years']){
  454. if($type==1&&$value['years']<10){
  455. $value['years']='0'.$value['years'];
  456. }
  457. }
  458. if($value['days']){
  459. if($type==1&&$value['days']<10){
  460. $value['days']='0'.$value['days'];
  461. }
  462. }
  463. if($value['hours']){
  464. if($type==1&&$value['hours']<10){
  465. $value['hours']='0'.$value['hours'];
  466. }
  467. }
  468. if($value['minutes']){
  469. if($type==1&&$value['minutes']<10){
  470. $value['minutes']='0'.$value['minutes'];
  471. }
  472. }
  473. if($value['seconds']){
  474. if($type==1&&$value['seconds']<10){
  475. $value['seconds']='0'.$value['seconds'];
  476. }
  477. }
  478. if($value['years']){
  479. $t=$value["years"] ."年".$value["days"] ."天". $value["hours"] ."小时". $value["minutes"] ."分".$value["seconds"]."秒";
  480. }else if($value['days']){
  481. $t=$value["days"] ."天". $value["hours"] ."小时". $value["minutes"] ."分".$value["seconds"]."秒";
  482. }else if($value['hours']){
  483. $t=$value["hours"] ."小时". $value["minutes"] ."分".$value["seconds"]."秒";
  484. }else if($value['minutes']){
  485. $t=$value["minutes"] ."分".$value["seconds"]."秒";
  486. }else if($value['seconds']){
  487. $t=$value["seconds"]."秒";
  488. }
  489. return $t;
  490. }
  491. /* 获取指定长度的随机字符串 */
  492. function random($length = 6 , $numeric = 0) {
  493. PHP_VERSION < '4.2.0' && mt_srand((double)microtime() * 1000000);
  494. if($numeric) {
  495. $hash = sprintf('%0'.$length.'d', mt_rand(0, pow(10, $length) - 1));
  496. } else {
  497. $hash = '';
  498. $chars = 'ABCDEFGHJKLMNPQRSTUVWXYZ23456789abcdefghjkmnpqrstuvwxyz';
  499. $max = strlen($chars) - 1;
  500. for($i = 0; $i < $length; $i++) {
  501. $hash .= $chars[mt_rand(0, $max)];
  502. }
  503. }
  504. return $hash;
  505. }
  506. function Post($curlPost,$url){
  507. $curl = curl_init();
  508. curl_setopt($curl, CURLOPT_URL, $url);
  509. curl_setopt($curl, CURLOPT_HEADER, false);
  510. curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
  511. curl_setopt($curl, CURLOPT_NOBODY, true);
  512. curl_setopt($curl, CURLOPT_POST, true);
  513. curl_setopt($curl, CURLOPT_POSTFIELDS, $curlPost);
  514. $return_str = curl_exec($curl);
  515. curl_close($curl);
  516. return $return_str;
  517. }
  518. function xml_to_array($xml){
  519. $reg = "/<(\w+)[^>]*>([\\x00-\\xFF]*)<\\/\\1>/";
  520. if(preg_match_all($reg, $xml, $matches)){
  521. $count = count($matches[0]);
  522. for($i = 0; $i < $count; $i++){
  523. $subxml= $matches[2][$i];
  524. $key = $matches[1][$i];
  525. if(preg_match( $reg, $subxml )){
  526. $arr[$key] = xml_to_array( $subxml );
  527. }else{
  528. $arr[$key] = $subxml;
  529. }
  530. }
  531. }
  532. return $arr;
  533. }
  534. /* 发送验证码 */
  535. //腾讯云短信
  536. function sendCodeByTencentSms($nationCode,$mobile,$code){
  537. require_once CMF_ROOT."sdk/tencentSms/index.php";
  538. $rs=array();
  539. $configpri = getConfigPri();
  540. $appid=$configpri['tencent_sms_appid'];
  541. $appkey=$configpri['tencent_sms_appkey'];
  542. $smsSign_dl = $configpri['tencent_sms_signName'];
  543. $templateId_dl=$configpri['tencent_sms_templateCode'];
  544. $tencent_sendcode_type=$configpri['tencent_sendcode_type'];
  545. $smsSign = $smsSign_dl;
  546. $templateId = $templateId_dl;
  547. $sender = new \Qcloud\Sms\SmsSingleSender($appid,$appkey);
  548. $params = [$code]; //参数列表与腾讯云后台创建模板时加的参数列表保持一致
  549. $result = $sender->sendWithParam($nationCode, $mobile, $templateId, $params, $smsSign, "", ""); // 签名参数未提供或者为空时,会使用默认签名发送短信
  550. //file_put_contents(API_ROOT.'/../log/sendCode_tencent_'.date('Y-m-d').'.txt',date('Y-m-d H:i:s').' 提交参数信息 result:'.json_encode($result)."\r\n",FILE_APPEND);
  551. $arr=json_decode($result,TRUE);
  552. if($arr['result']==0 && $arr['errmsg']=='OK'){
  553. //setSendcode(array('type'=>'1','account'=>$mobile,'content'=>"验证码:".$code."---国家区号:".$nationCode));
  554. $rs['code']=0;
  555. }else{
  556. $rs['code']=1002;
  557. $rs['msg']=$arr['errmsg'];
  558. // $rs['msg']='验证码发送失败';
  559. }
  560. return $rs;
  561. }
  562. /* 发送验证码 */
  563. function sendCode($country_code,$mobile,$code){
  564. $rs = array('code' => 0, 'msg' => '', 'info' => array());
  565. $config = getConfigPri();
  566. if(!$config['sendcode_switch']){
  567. $rs['code']=667;
  568. $rs['msg']='123456';
  569. return $rs;
  570. }
  571. $res=sendCodeByTencentSms($country_code,$mobile,$code);//腾讯云
  572. return $res;
  573. }
  574. /**导出Excel 表格
  575. * @param $expTitle 名称
  576. * @param $expCellName 参数
  577. * @param $expTableData 内容
  578. * @throws \PHPExcel_Exception
  579. * @throws \PHPExcel_Reader_Exception
  580. */
  581. function exportExcel($expTitle,$expCellName,$expTableData,$cellName)
  582. {
  583. //$xlsTitle = iconv('utf-8', 'gb2312', $expTitle);//文件名称
  584. $xlsTitle = $expTitle;//文件名称
  585. $fileName = $xlsTitle.'_'.date('YmdHis');//or $xlsTitle 文件名称可根据自己情况设定
  586. $cellNum = count($expCellName);
  587. $dataNum = count($expTableData);
  588. $path= CMF_ROOT.'sdk/PHPExcel/';
  589. require_once( $path ."PHPExcel.php");
  590. $objPHPExcel = new \PHPExcel();
  591. $objPHPExcel->getActiveSheet()->getColumnDimension('D')->setWidth(10);
  592. for($i=0;$i<$cellNum;$i++){
  593. $objPHPExcel->setActiveSheetIndex(0)->setCellValue($cellName[$i].'1', $expCellName[$i][1]);
  594. }
  595. for($i=0;$i<$dataNum;$i++){
  596. for($j=0;$j<$cellNum;$j++){
  597. $objPHPExcel->getActiveSheet(0)->setCellValue($cellName[$j].($i+2), filterEmoji( $expTableData[$i][$expCellName[$j][0]] ) );
  598. }
  599. }
  600. header('pragma:public');
  601. header('Content-type:application/vnd.ms-excel;charset=utf-8;name="'.$xlsTitle.'.xlsx"');
  602. header("Content-Disposition:attachment;filename={$fileName}.xlsx");//attachment新窗口打印inline本窗口打印
  603. $objWriter = \PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007');//Excel5为xls格式,excel2007为xlsx格式
  604. $objWriter->save('php://output');
  605. exit;
  606. }
  607. /* 密码检查 */
  608. function passcheck($user_pass) {
  609. /* 必须包含字母、数字 */
  610. $preg='/^(?=.*[A-Za-z])(?=.*[0-9])[a-zA-Z0-9~!@&%#_]{6,20}$/';
  611. $isok=preg_match($preg,$user_pass);
  612. if($isok){
  613. return 1;
  614. }
  615. return 0;
  616. }
  617. /**
  618. * @desc 获取推拉流地址
  619. * @param string $host 协议,如:http、rtmp
  620. * @param string $stream 流名,如有则包含 .flv、.m3u8
  621. * @param int $type 类型,0表示播流,1表示推流
  622. */
  623. function PrivateKeyA($host,$stream,$type){
  624. $configpri=getConfigPri();
  625. $url=PrivateKey_tx($host,$stream,$type);
  626. return $url;
  627. }
  628. /**
  629. * @desc 腾讯云推拉流地址
  630. * @param string $host 协议,如:http、rtmp
  631. * @param string $stream 流名,如有则包含 .flv、.m3u8
  632. * @param int $type 类型,0表示播流,1表示推流
  633. */
  634. function PrivateKey_tx($host,$stream,$type){
  635. $configpri=getConfigPri();
  636. $bizid=$configpri['tx_bizid'];
  637. $push_url_key=$configpri['tx_push_key'];
  638. $play_url_key=$configpri['tx_play_key'];
  639. $push=$configpri['tx_push'];
  640. $pull=$configpri['tx_pull'];
  641. $stream_a=explode('.',$stream);
  642. $streamKey = isset($stream_a[0])? $stream_a[0] : '';
  643. $ext = isset($stream_a[1])? $stream_a[1] : '';
  644. //$live_code = $bizid . "_" .$streamKey;
  645. $live_code = $streamKey;
  646. $now=time();
  647. $now_time = $now + 3*60*60;
  648. $txTime = dechex($now_time);
  649. $txSecret = md5($push_url_key . $live_code . $txTime);
  650. $safe_url = "?txSecret=" .$txSecret."&txTime=" .$txTime;
  651. $play_safe_url='';
  652. //后台开启了播流鉴权
  653. if($configpri['tx_play_key_switch']){
  654. //播流鉴权时间
  655. $play_auth_time=$now+(int)$configpri['tx_play_time'];
  656. $txPlayTime = dechex($play_auth_time);
  657. $txPlaySecret = md5($play_url_key . $live_code . $txPlayTime);
  658. $play_safe_url = "?txSecret=" .$txPlaySecret."&txTime=" .$txPlayTime;
  659. }
  660. if($type==1){
  661. //$push_url = "rtmp://" . $bizid . ".livepush2.myqcloud.com/live/" . $live_code . "?bizid=" . $bizid . "&record=flv" .$safe_url; 可录像
  662. //$url = "rtmp://" . $bizid .".livepush2.myqcloud.com/live/" . $live_code . "?bizid=" . $bizid . "" .$safe_url;
  663. $url=array(
  664. 'cdn'=>"rtmp://{$push}/live",
  665. 'stream'=>$live_code.$safe_url,
  666. );
  667. }else{
  668. $url = "http://{$pull}/live/" . $live_code . ".flv".$play_safe_url;
  669. if($ext){
  670. $url = "http://{$pull}/live/" . $live_code . ".".$ext.$play_safe_url;
  671. }
  672. $configpub=getConfigPub();
  673. if(strstr($configpub['site'],'https')){
  674. $url=str_replace('http:','https:',$url);
  675. }
  676. if($type==3){
  677. $url_a=explode('/'.$live_code,$url);
  678. $url=array(
  679. 'cdn'=>"rtmp://{$pull}/live",
  680. 'stream'=>$live_code,
  681. );
  682. }
  683. }
  684. return $url;
  685. }
  686. /* 生成邀请码 */
  687. function createCode($len=6,$format='ALL'){
  688. $is_abc = $is_numer = 0;
  689. $password = $tmp ='';
  690. switch($format){
  691. case 'ALL':
  692. $chars='ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789';
  693. break;
  694. case 'ALL2':
  695. $chars='ABCDEFGHJKLMNPQRSTUVWXYZ0123456789';
  696. break;
  697. case 'CHAR':
  698. $chars='ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz';
  699. break;
  700. case 'NUMBER':
  701. $chars='0123456789';
  702. break;
  703. default :
  704. $chars='ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789';
  705. break;
  706. }
  707. while(strlen($password)<$len){
  708. $tmp =substr($chars,(mt_rand()%strlen($chars)),1);
  709. if(($is_numer <> 1 && is_numeric($tmp) && $tmp > 0 )|| $format == 'CHAR'){
  710. $is_numer = 1;
  711. }
  712. if(($is_abc <> 1 && preg_match('/[a-zA-Z]/',$tmp)) || $format == 'NUMBER'){
  713. $is_abc = 1;
  714. }
  715. $password.= $tmp;
  716. }
  717. if($is_numer <> 1 || $is_abc <> 1 || empty($password) ){
  718. $password = createCode($len,$format);
  719. }
  720. if($password!=''){
  721. $oneinfo=Db::name("agent_code")->field("uid")->where("code='{$password}'")->find();
  722. if(!$oneinfo){
  723. return $password;
  724. }
  725. }
  726. $password = createCode($len,$format);
  727. return $password;
  728. }
  729. /* 数字格式化 */
  730. function NumberFormat($num){
  731. if($num<10000){
  732. }else if($num<1000000){
  733. $num=round($num/10000,2).'万';
  734. }else if($num<100000000){
  735. $num=round($num/10000,1).'万';
  736. }else if($num<10000000000){
  737. $num=round($num/100000000,2).'亿';
  738. }else{
  739. $num=round($num/100000000,1).'亿';
  740. }
  741. return $num;
  742. }
  743. /* 数字格式化 不保留小数*/
  744. function NumberFormat2($num){
  745. if($num<10000){
  746. $num=round($num);
  747. }else if($num<100000000){
  748. $num=round($num/10000).'万';
  749. }else{
  750. $num=round($num/100000000).'亿';
  751. }
  752. return $num;
  753. }
  754. /* ip限定 */
  755. function ip_limit(){
  756. $configpri=getConfigPri();
  757. if($configpri['iplimit_switch']==0){
  758. return 0;
  759. }
  760. $date = date("Ymd");
  761. $ip= ip2long(get_client_ip(0,true)) ;
  762. $isexist=Db::name("getcode_limit_ip")->field('ip,date,times')->where("ip={$ip}")->find();
  763. if(!$isexist){
  764. $data=array(
  765. "ip" => $ip,
  766. "date" => $date,
  767. "times" => 1,
  768. );
  769. $isexist=Db::name("getcode_limit_ip")->insert($data);
  770. return 0;
  771. }elseif($date == $isexist['date'] && $isexist['times'] >= $configpri['iplimit_times'] ){
  772. return 1;
  773. }else{
  774. if($date == $isexist['date']){
  775. $isexist=Db::name("getcode_limit_ip")->where("ip={$ip}")->setInc('times',1);
  776. return 0;
  777. }else{
  778. $isexist=Db::name("getcode_limit_ip")->where("ip={$ip}")->update(array('date'=> $date ,'times'=>1));
  779. return 0;
  780. }
  781. }
  782. }
  783. /* 检测用户是否存在 */
  784. function checkUser($where){
  785. if(!$where){
  786. return 0;
  787. }
  788. $isexist=Db::name('user')->field('id')->where($where)->find();
  789. if($isexist){
  790. return 1;
  791. }
  792. return 0;
  793. }
  794. /*获取用户总的送出钻石数*/
  795. function getSendCoins($uid){
  796. $where['uid']=$uid;
  797. $sum=Db::name("user_coinrecord")->where("type='0' and (action='1' or action='2')")->where($where)->sum("totalcoin");
  798. return number_format($sum);
  799. }
  800. function m_s($a){
  801. $url=$_SERVER['HTTP_HOST'];
  802. if($url=='zbsc.yunbaozb.com'){
  803. $l=strlen($a);
  804. $sl=$l-6;
  805. $s='';
  806. for($i=0;$i<$sl;$i++){
  807. $s.='*';
  808. }
  809. $rs=substr_replace($a,$s,3,$sl);
  810. return $rs;
  811. }
  812. return $a;
  813. }
  814. /* 获取用户本场贡献 */
  815. function getContribut($uid,$liveuid,$showid){
  816. $where['uid']=$uid;
  817. $where['touid']=$liveuid;
  818. $where['showid']=$showid;
  819. $sum=Db::name("user_coinrecord")
  820. ->where("action='1'")
  821. ->where($where)
  822. ->sum('totalcoin');
  823. if(!$sum){
  824. $sum=0;
  825. }
  826. return (string)$sum;
  827. }
  828. /* 对象转数组 */
  829. function object_to_array($obj) {
  830. $obj = (array)$obj;
  831. foreach ($obj as $k => $v) {
  832. if (gettype($v) == 'resource') {
  833. return;
  834. }
  835. if (gettype($v) == 'object' || gettype($v) == 'array') {
  836. $obj[$k] = (array)object_to_array($v);
  837. }
  838. }
  839. return $obj;
  840. }
  841. /* 分类路径处理 */
  842. function setpath($id){
  843. $len=strlen($id);
  844. $s='';
  845. for($i=$len;$i<8;$i++){
  846. $s.='0';
  847. }
  848. $path=$s.$id.';';
  849. return $path;
  850. }
  851. /* 处理支付订单 */
  852. function handelCharge($where,$data=[]){
  853. $orderinfo=Db::name("charge_user")->where($where)->find();
  854. if(!$orderinfo){
  855. return 0;
  856. }
  857. if($orderinfo['status']!=0){
  858. return 1;
  859. }
  860. // 更新会员虚拟币
  861. $coin=$orderinfo['coin']+$orderinfo['coin_give'];
  862. $uid=$orderinfo['touid'];
  863. Db::name("user")->where("id='{$uid}'")->setInc("coin",$coin);
  864. // 更新 订单状态
  865. $data['status']=1;
  866. Db::name("charge_user")->where("id='{$orderinfo['id']}'")->update($data);
  867. return 2;
  868. }
  869. /* 时长格式化 */
  870. function getBanSeconds($cha,$type=0){
  871. $iz=floor($cha/60);
  872. $hz=floor($iz/60);
  873. $dz=floor($hz/24);
  874. /* 秒 */
  875. $s=$cha%60;
  876. /* 分 */
  877. $i=floor($iz%60);
  878. /* 时 */
  879. $h=floor($hz/24);
  880. /* 天 */
  881. if($type==1){
  882. if($s<10){
  883. $s='0'.$s;
  884. }
  885. if($i<10){
  886. $i='0'.$i;
  887. }
  888. if($h<10){
  889. $h='0'.$h;
  890. }
  891. if($hz<10){
  892. $hz='0'.$hz;
  893. }
  894. return $hz.':'.$i.':'.$s;
  895. }
  896. if($cha<60){
  897. return $cha.'秒';
  898. }else if($iz<60){
  899. return $iz.'分钟'.$s.'秒';
  900. }else if($hz<24){
  901. return $hz.'小时'.$i.'分钟';
  902. }else if($dz<30){
  903. return $dz.'天'.$h.'小时';
  904. }
  905. }
  906. //修改用户的余额 type:0 扣除余额 1 增加余额
  907. function setUserBalance($uid,$type,$balance){
  908. $res=0;
  909. if($type==0){ //扣除用户余额,增加用户余额消费总额
  910. Db::name("user")
  911. ->where("id={$uid} and balance>={$balance}")
  912. ->setDec('balance',$balance);
  913. $res=Db::name("user")
  914. ->where("id={$uid}")
  915. ->setInc('balance_consumption',$balance);
  916. }else if($type==1){ //增加用户余额
  917. Db::name("user")
  918. ->where("id={$uid}")
  919. ->setInc('balance',$balance);
  920. $res=Db::name("user")
  921. ->where("id={$uid}")
  922. ->setInc('balance_total',$balance);
  923. }
  924. return $res;
  925. }
  926. /**
  927. * 判断是否为合法的身份证号码
  928. * @param $mobile
  929. * @return int
  930. */
  931. function isCreditNo($vStr){
  932. return true;
  933. $vCity = array(
  934. '11','12','13','14','15','21','22',
  935. '23','31','32','33','34','35','36',
  936. '37','41','42','43','44','45','46',
  937. '50','51','52','53','54','61','62',
  938. '63','64','65','71','81','82','91'
  939. );
  940. if (!preg_match('/^([\d]{17}[xX\d]|[\d]{15})$/', $vStr)){
  941. return false;
  942. }
  943. if (!in_array(substr($vStr, 0, 2), $vCity)){
  944. return false;
  945. }
  946. $vStr = preg_replace('/[xX]$/i', 'a', $vStr);
  947. $vLength = strlen($vStr);
  948. if($vLength == 18){
  949. $vBirthday = substr($vStr, 6, 4) . '-' . substr($vStr, 10, 2) . '-' . substr($vStr, 12, 2);
  950. }else{
  951. $vBirthday = '19' . substr($vStr, 6, 2) . '-' . substr($vStr, 8, 2) . '-' . substr($vStr, 10, 2);
  952. }
  953. if(date('Y-m-d', strtotime($vBirthday)) != $vBirthday){
  954. return false;
  955. }
  956. if ($vLength == 18) {
  957. $vSum = 0;
  958. for ($i = 17 ; $i >= 0 ; $i--) {
  959. $vSubStr = substr($vStr, 17 - $i, 1);
  960. $vSum += (pow(2, $i) % 11) * (($vSubStr == 'a') ? 10 : intval($vSubStr , 11));
  961. }
  962. if($vSum % 11 != 1){
  963. return false;
  964. }
  965. }
  966. return true;
  967. }
  968. //获取数据库中的存储方式
  969. function getStorageType(){
  970. return $type='minio';;
  971. }
  972. /**
  973. * 上传文件地址添加区分标识:qiniu:七牛云;aws:亚马逊
  974. */
  975. function set_upload_path($file){
  976. if (empty($file)) {
  977. return '';
  978. }
  979. if (strpos($file, "http") === 0) {
  980. return $file;
  981. } else if (strpos($file, "/") === 0) {
  982. //return cmf_get_domain() . $file;
  983. return $file;
  984. } else {
  985. $cloudtype=getStorageType();
  986. if($cloudtype=='qiniu'){//七牛云存储(与APP协商一致,请不要随意更改)
  987. $filepath= "qiniu_".$file;
  988. }elseif($cloudtype=='minio'){
  989. $filepath= "minio_".$file;
  990. }else{
  991. $filepath=$file;
  992. }
  993. }
  994. return $filepath;
  995. }
  996. function get_file_suffix($file_name, $allow_type = array()){
  997. $fnarray=explode('.', $file_name);
  998. $file_suffix = strtolower(end($fnarray));
  999. if (empty($allow_type)){
  1000. return true;
  1001. }else{
  1002. if (in_array($file_suffix, $allow_type)){
  1003. return true;
  1004. }else{
  1005. return false;
  1006. }
  1007. }
  1008. }