common.php.bakd 31 KB

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