common.php 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778
  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-04-30
  10. // +—————————————————————————————————————————————————————————————————————
  11. use think\Db;
  12. use cmf\lib\Storage;
  13. // 应用公共文件
  14. error_reporting(E_ERROR | E_WARNING | E_PARSE);
  15. require_once dirname(__FILE__).'/redis.php';
  16. /**
  17. * 获取当前登录的管事员id
  18. * @return int
  19. */
  20. function get_current_admin_id(){
  21. return session('ADMIN_ID');
  22. }
  23. /* 去除NULL 判断空处理 主要针对字符串类型*/
  24. function checkNull($checkstr){
  25. $checkstr=trim($checkstr);
  26. $checkstr=urldecode($checkstr);
  27. if( strstr($checkstr,'null') || (!$checkstr && $checkstr!=0 ) ){
  28. $str='';
  29. }else{
  30. $str=$checkstr;
  31. }
  32. $str=htmlspecialchars($str);
  33. return $str;
  34. }
  35. /* 检验手机号 */
  36. function checkMobile($mobile){
  37. $ismobile = preg_match("/^1[3|4|5|6|7|8|9]\d{9}$/",$mobile);
  38. if($ismobile){
  39. return 1;
  40. }
  41. return 0;
  42. }
  43. /* 去除emoji表情 */
  44. function filterEmoji($str){
  45. $str = preg_replace_callback(
  46. '/./u',
  47. function (array $match) {
  48. return strlen($match[0]) >= 4 ? '' : $match[0];
  49. },
  50. $str);
  51. return $str;
  52. }
  53. /**
  54. * 转化数据库保存的文件路径,为可以访问的url
  55. */
  56. function get_upload_path($file){
  57. if($file==''){
  58. return $file;
  59. }
  60. $configpri=getConfigPri();
  61. if(strpos($file,"http")===0){
  62. //将字符串分隔
  63. $file_arr=explode('%@%cloudtype=',$file);
  64. $cloudtype=$file_arr['1'];
  65. $file=$file_arr['0'];
  66. if(!isset($cloudtype)){
  67. return html_entity_decode($file);
  68. }
  69. if($cloudtype==1){ //存储方式为七牛
  70. return html_entity_decode($file);
  71. }else{
  72. return html_entity_decode($file);
  73. }
  74. }else if(strpos($file,"/")===0){
  75. $filepath= cmf_get_domain().$file;
  76. return $filepath;
  77. }else{
  78. //将字符串分隔
  79. $file_arr=explode('%@%cloudtype=',$file);
  80. $cloudtype=$file_arr['1'];
  81. $file=$file_arr['0'];
  82. if($cloudtype==1){ //七牛存储
  83. $space_host=$configpri['qiniu_protocol']."://".$configpri['qiniu_domain']."/";
  84. }else{
  85. $space_host="http://";
  86. }
  87. $space_host = 'http://43.239.167.134:9000/short-video/';
  88. $filepath=$space_host.$file;
  89. if(!isset($cloudtype)){
  90. return html_entity_decode($filepath);
  91. }
  92. if($cloudtype==2 && $configpri['tx_private_signature']){ //腾讯云存储 且 需要签名验证
  93. return setTxUrl(html_entity_decode($filepath)); //腾讯云存储为私有读写时需要调用该方法获取签名验证
  94. }else{
  95. return html_entity_decode($filepath);
  96. }
  97. }
  98. }
  99. /* 公共配置 */
  100. function getConfigPub() {
  101. $key='getConfigPub';
  102. $config=getcaches($key);
  103. $config=false;
  104. if(!$config){
  105. $config= cmf_get_option('site_info', $options);
  106. setcaches($key,$config);
  107. }
  108. return $config;
  109. }
  110. /* 获取私密配置 */
  111. function getConfigPri() {
  112. $key='getConfigPri';
  113. $config=getcaches($key);
  114. $config=false;
  115. if(!$config){
  116. $config=cmf_get_option('configpri');
  117. setcaches($key,$config);
  118. }
  119. return $config;
  120. }
  121. /* 判断token */
  122. function checkToken($uid,$token) {
  123. if($uid<1 || $token==''){
  124. return 700;
  125. }
  126. $key="token_".$uid;
  127. $userinfo=getCache($key);
  128. if(!$userinfo){
  129. $userinfo=Db::name('user_token')
  130. ->field('token,expire_time')
  131. ->where(['user_id'=>$uid])
  132. ->find();
  133. if($userinfo){
  134. setCache($key,$userinfo);
  135. }
  136. }
  137. if(!$userinfo || $userinfo['token']!=$token || $userinfo['expire_time']<time()){
  138. return 700;
  139. }
  140. return 0;
  141. }
  142. /* 用户基本信息 */
  143. function getUserInfo($uid) {
  144. $info= Db::name("user")
  145. ->field("id,user_nicename,avatar,avatar_thumb,sex,signature,province,city,birthday,user_status")
  146. ->where("id='{$uid}'")
  147. ->find();
  148. if($info){
  149. $info['avatar']=get_upload_path($info['avatar']);
  150. $info['avatar_thumb']=get_upload_path($info['avatar_thumb']);
  151. }
  152. return $info;
  153. }
  154. function getLength($time,$type=0){
  155. if(!$time){
  156. return (string)$time;
  157. }
  158. $value = array(
  159. "years" => 0,
  160. "days" => 0,
  161. "hours" => 0,
  162. "minutes" => 0,
  163. "seconds" => 0
  164. );
  165. if($time >= 31556926){
  166. $value["years"] = floor($time/31556926);
  167. $time = ($time%31556926);
  168. }
  169. if($time >= 86400){
  170. $value["days"] = floor($time/86400);
  171. $time = ($time%86400);
  172. }
  173. if($time >= 3600){
  174. $value["hours"] = floor($time/3600);
  175. $time = ($time%3600);
  176. }
  177. if($time >= 60){
  178. $value["minutes"] = floor($time/60);
  179. $time = ($time%60);
  180. }
  181. $value["seconds"] = floor($time);
  182. if($value['years']){
  183. if($type==1&&$value['years']<10){
  184. $value['years']='0'.$value['years'];
  185. }
  186. }
  187. if($value['days']){
  188. if($type==1&&$value['days']<10){
  189. $value['days']='0'.$value['days'];
  190. }
  191. }
  192. if($value['hours']){
  193. if($type==1&&$value['hours']<10){
  194. $value['hours']='0'.$value['hours'];
  195. }
  196. }
  197. if($value['minutes']){
  198. if($type==1&&$value['minutes']<10){
  199. $value['minutes']='0'.$value['minutes'];
  200. }
  201. }
  202. if($value['seconds']){
  203. if($type==1&&$value['seconds']<10){
  204. $value['seconds']='0'.$value['seconds'];
  205. }
  206. }
  207. if($value['years']){
  208. $t=$value["years"] ."年".$value["days"] ."天". $value["hours"] ."小时". $value["minutes"] ."分".$value["seconds"]."秒";
  209. }else if($value['days']){
  210. $t=$value["days"] ."天". $value["hours"] ."小时". $value["minutes"] ."分".$value["seconds"]."秒";
  211. }else if($value['hours']){
  212. $t=$value["hours"] ."小时". $value["minutes"] ."分".$value["seconds"]."秒";
  213. }else if($value['minutes']){
  214. $t=$value["minutes"] ."分".$value["seconds"]."秒";
  215. }else if($value['seconds']){
  216. $t=$value["seconds"]."秒";
  217. }
  218. return $t;
  219. }
  220. /**导出Excel 表格
  221. * @param $expTitle 名称
  222. * @param $expCellName 参数
  223. * @param $expTableData 内容
  224. * @throws \PHPExcel_Exception
  225. * @throws \PHPExcel_Reader_Exception
  226. */
  227. function exportExcel($expTitle,$expCellName,$expTableData,$cellName){
  228. //$xlsTitle = iconv('utf-8', 'gb2312', $expTitle);//文件名称
  229. $xlsTitle = $expTitle;//文件名称
  230. $fileName = $xlsTitle.'_'.date('YmdHis');//or $xlsTitle 文件名称可根据自己情况设定
  231. $cellNum = count($expCellName);
  232. $dataNum = count($expTableData);
  233. $path= CMF_ROOT.'sdk/PHPExcel/';
  234. require_once( $path ."PHPExcel.php");
  235. $objPHPExcel = new \PHPExcel();
  236. $objPHPExcel->getActiveSheet()->getColumnDimension('D')->setWidth(10);
  237. for($i=0;$i<$cellNum;$i++){
  238. $objPHPExcel->setActiveSheetIndex(0)->setCellValue($cellName[$i].'1', $expCellName[$i][1]);
  239. }
  240. for($i=0;$i<$dataNum;$i++){
  241. for($j=0;$j<$cellNum;$j++){
  242. $objPHPExcel->getActiveSheet(0)->setCellValue($cellName[$j].($i+2), filterEmoji( $expTableData[$i][$expCellName[$j][0]] ) );
  243. }
  244. }
  245. header('pragma:public');
  246. header('Content-type:application/vnd.ms-excel;charset=utf-8;name="'.$xlsTitle.'.xlsx"');
  247. header("Content-Disposition:attachment;filename={$fileName}.xlsx");//attachment新窗口打印inline本窗口打印
  248. $objWriter = \PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007');//Excel5为xls格式,excel2007为xlsx格式
  249. $objWriter->save('php://output');
  250. exit;
  251. }
  252. function get_file_suffix($file_name, $allow_type = array()){
  253. $fnarray=explode('.', $file_name);
  254. $file_suffix = strtolower(end($fnarray));
  255. if (empty($allow_type)){
  256. return true;
  257. }else{
  258. if (in_array($file_suffix, $allow_type)){
  259. return true;
  260. }else{
  261. return false;
  262. }
  263. }
  264. }
  265. /*
  266. 单文件云存储
  267. files 单个文件上传信息(包含键值) $files['file']=$_FILES["file"]
  268. type 文件类型 img图片 video视频 music音乐
  269. */
  270. function adminUploadFilesBF($files='',$type="video"){
  271. $rs=array('code'=>1000,'data'=>[],'msg'=>'上传失败');
  272. //获取后台上传配置
  273. $configpri=getConfigPri();
  274. if($configpri['cloudtype']==1){ //七牛云存储
  275. require_once CMF_ROOT.'sdk/qiniu/autoload.php';
  276. // 需要填写你的 Access Key 和 Secret Key
  277. $accessKey = $configpri['qiniu_accesskey'];
  278. $secretKey = $configpri['qiniu_secretkey'];
  279. $bucket = $configpri['qiniu_bucket'];
  280. $qiniu_domain_url = $configpri['qiniu_domain_url'];
  281. // 构建鉴权对象
  282. $auth = new \Qiniu\Auth($accessKey, $secretKey);
  283. // 生成上传 Token
  284. $token = $auth->uploadToken($bucket);
  285. // 要上传文件的本地路径
  286. $filePath = $files['file']['tmp_name'];
  287. // 上传到七牛后保存的文件名
  288. $ext=strtolower(pathinfo($files['file']['name'], PATHINFO_EXTENSION));
  289. $key = date('Ymd').'/'.uniqid().'.'.$ext;
  290. // 初始化 UploadManager 对象并进行文件的上传。
  291. $uploadMgr = new \Qiniu\Storage\UploadManager();
  292. // 调用 UploadManager 的 putFile 方法进行文件的上传。
  293. list($ret, $err) = $uploadMgr->putFile($token, $key, $filePath);
  294. if($err !== null){
  295. $rs['msg']=$err->getResponse()->error;
  296. return $rs;
  297. }
  298. $url=$key;
  299. $url_p=$qiniu_domain_url.$key;
  300. }
  301. $rs['code']=0;
  302. $rs['data']['url']=$url;
  303. $rs['data']['url_p']=$url_p;
  304. return $rs;
  305. }
  306. /*
  307. 单文件云存储
  308. files 单个文件上传信息(包含键值) $files['file']=$_FILES["file"]
  309. type 文件类型 img图片 video视频 music音乐
  310. */
  311. function adminUploadFiles($files='',$type="video"){
  312. $name=$files["file"]['name'];
  313. $pathinfo=pathinfo($name);
  314. if(!isset($pathinfo['extension'])){
  315. $files["file"]['name']=$name.'.jpg';
  316. }
  317. $rs=array('code'=>1000,'data'=>[],'msg'=>'上传失败');
  318. //获取后台上传配置
  319. // $configpri=getConfigPri();
  320. //
  321. // $cloudtype=$configpri['cloudtype'];
  322. //
  323. // if($cloudtype==1){ //七牛云存储
  324. // require_once CMF_ROOT.'sdk/qiniu/autoload.php';
  325. //
  326. // // 需要填写你的 Access Key 和 Secret Key
  327. // $accessKey = $configpri['qiniu_accesskey'];
  328. // $secretKey = $configpri['qiniu_secretkey'];
  329. // $bucket = $configpri['qiniu_bucket'];
  330. // /* $qiniu_domain_url = $configpri['qiniu_domain_url']; */
  331. // $qiniu_domain_url = $configpri['qiniu_protocol']."://".$configpri['qiniu_domain']."/";
  332. //
  333. // // 构建鉴权对象
  334. // $auth = new \Qiniu\Auth($accessKey, $secretKey);
  335. //
  336. // // 生成上传 Token
  337. // $token = $auth->uploadToken($bucket);
  338. //
  339. // // 要上传文件的本地路径
  340. $filePath = $files['file']['tmp_name'];
  341. //
  342. // // 上传到七牛后保存的文件名
  343. $ext=strtolower(pathinfo($files['file']['name'], PATHINFO_EXTENSION));
  344. $key = date('Ymd').'/'.uniqid().'.'.$ext;
  345. // // 初始化 UploadManager 对象并进行文件的上传。
  346. // $uploadMgr = new \Qiniu\Storage\UploadManager();
  347. //
  348. // // 调用 UploadManager 的 putFile 方法进行文件的上传。
  349. // list($ret, $err) = $uploadMgr->putFile($token, $key, $filePath);
  350. //
  351. //
  352. //
  353. // if($err !== null){
  354. // $rs['msg']=$err->getResponse()->error;
  355. // return $rs;
  356. // }
  357. $qiniu_domain_url = 'http://43.239.167.134:9000';
  358. $url=$qiniu_domain_url.$key;
  359. $url_p=$key;
  360. // }
  361. // minio
  362. $cloudtype = 4;
  363. if (!function_exists('Aws\constantly')) {
  364. require CMF_ROOT . 'sdk/aws/aws-autoloader.php';
  365. }
  366. $s3 = new Aws\S3\S3Client([
  367. 'version' => 'latest',
  368. 'region' => 'us-east-1',
  369. 'endpoint' => $qiniu_domain_url,
  370. 'use_path_style_endpoint' => true,
  371. 'credentials' => [
  372. 'key' => '6kUBnBRda9mes83brwEP',
  373. 'secret' => 'AEPLazYp82HSMNlua3OCzXFo8rNxSQjgCdHD3bPT',
  374. ],
  375. ]);
  376. $result = $s3->putObject([
  377. 'Bucket' => 'short-video',
  378. 'Key' => $key,
  379. 'Body' => 'this is the body!',
  380. 'SourceFile' => $filePath,
  381. // 'ContentType' => 'image/jpg',
  382. ]);
  383. $rs['code']=0;
  384. $rs['data']['url']=$url_p;
  385. $rs['data']['url_p']=setCloudType($url_p); //设置存储方式
  386. $rs['data']['url_c']=$url;
  387. $tx_private_signature=$configpri['tx_private_signature'];
  388. if($cloudtype==2 && $tx_private_signature){ //腾讯存储桶为私有读 需要进行文件验证签名
  389. $rs['data']['url_c']=setTxUrl($url_p); //签名地址
  390. }
  391. //return $rs;
  392. //同步Upload.php返回格式
  393. return [
  394. 'filepath' => $rs['data']['url_p'], //带存储方式的【存储用】
  395. "name" => '',
  396. 'id' => time().rand(1,99),
  397. 'preview_url' =>$rs['data']['url_c'], //带签名的【展示用】
  398. 'url' => $rs['data']['url_c'],
  399. 'code' =>0
  400. ];
  401. }
  402. /* 数字格式化 */
  403. function NumberFormat($num){
  404. if($num<10000){
  405. }else if($num<1000000){
  406. $num=round($num/10000,2).'万';
  407. }else if($num<100000000){
  408. $num=round($num/10000,1).'万';
  409. }else if($num<10000000000){
  410. $num=round($num/100000000,2).'亿';
  411. }else{
  412. $num=round($num/100000000,1).'亿';
  413. }
  414. return $num;
  415. }
  416. /* 生成邀请码 */
  417. function createCode(){
  418. $code = 'ABCDEFGHIJKLMNPQRSTUVWXYZ';
  419. $rand = $code[rand(0,25)]
  420. .strtoupper(dechex(date('m')))
  421. .date('d').substr(time(),-5)
  422. .substr(microtime(),2,5)
  423. .sprintf('%02d',rand(0,99));
  424. for(
  425. $a = md5( $rand, true ),
  426. $s = '123456789ABCDEFGHIJKLMNPQRSTUV',
  427. $d = '',
  428. $f = 0;
  429. $f < 6;
  430. $g = ord( $a[ $f ] ),
  431. $d .= $s[ ( $g ^ ord( $a[ $f + 6 ] ) ) - $g & 0x1F ],
  432. $f++
  433. );
  434. if(mb_strlen($d)==6){
  435. $oneinfo=Db::name("user")->field("id")->where("code='{$d}'")->find();
  436. if(!$oneinfo){
  437. return $d;
  438. }
  439. }
  440. $d=createCode();
  441. return $d;
  442. }
  443. function m_s($a){
  444. return $a;
  445. $url=$_SERVER['HTTP_HOST'];
  446. $domain=cmf_get_domain();
  447. $domain=str_replace("https://", '', $domain);
  448. $domain=str_replace("http://", '', $domain);
  449. if($url==$domain){
  450. $l=strlen($a);
  451. $sl=$l-6;
  452. $s='';
  453. for($i=0;$i<$sl;$i++){
  454. $s.='*';
  455. }
  456. $rs=substr_replace($a,$s,3,$sl);
  457. return $rs;
  458. }
  459. return $a;
  460. }
  461. //为文件拼接存储方式,方便get_upload_path做签名处理
  462. function setCloudType($url){
  463. $configpri=getConfigPri();
  464. $cloudtype=$configpri['cloudtype'];
  465. //file_put_contents("zzza.txt", $url);
  466. $url=$url."%@%cloudtype=".$cloudtype;
  467. //file_put_contents("zzz.txt", $url);
  468. return $url;
  469. }
  470. //获取粉丝数量
  471. function getFans($uid){
  472. $count=Db::name("user_attention")->where("touid={$uid}")->count();
  473. return $count;
  474. }
  475. //判断用户是否注销
  476. function checkIsDestroy($uid){
  477. $user_status=Db::name("user")->where("id={$uid}")->value('user_status');
  478. if($user_status==3){
  479. return 1;
  480. }
  481. return 0;
  482. }
  483. //身份证检测
  484. function checkCardNo($cardno){
  485. $preg='/^(^[1-9]\d{7}((0\d)|(1[0-2]))(([0|1|2]\d)|3[0-1])\d{3}$)|(^[1-9]\d{5}[1-9]\d{3}((0\d)|(1[0-2]))(([0|1|2]\d)|3[0-1])((\d{4})|\d{3}[Xx])$)$/';
  486. $isok=preg_match($preg, $cardno);
  487. if($isok){
  488. return 1;
  489. }else{
  490. return 0;
  491. }
  492. }
  493. /* ip限定 */
  494. function ip_limit(){
  495. $configpri=getConfigPri();
  496. if($configpri['iplimit_switch']==0){
  497. return 0;
  498. }
  499. $date = date("Ymd");
  500. $ip= ip2long($_SERVER["REMOTE_ADDR"]);
  501. $isexist=Db::name("getcode_limit_ip")
  502. ->field("ip,date,times")
  503. ->where("ip={$ip}")
  504. ->find();
  505. if(!$isexist){
  506. $data=array(
  507. "ip" => $ip,
  508. "date" => $date,
  509. "times" => 1,
  510. );
  511. $isexist=Db::name("getcode_limit_ip")->insert($data);
  512. return 0;
  513. }elseif($date == $isexist['date'] && $isexist['times'] >= $configpri['iplimit_times'] ){
  514. return 1;
  515. }else{
  516. if($date == $isexist['date']){
  517. $isexist=Db::name("getcode_limit_ip")
  518. ->where("ip={$ip}")
  519. ->setInc("times",1);
  520. return 0;
  521. }else{
  522. $isexist=Db::name("getcode_limit_ip")
  523. ->where("ip={$ip}")
  524. ->update(array('date'=> $date ,'times'=>1));
  525. return 0;
  526. }
  527. }
  528. }
  529. /* 随机数 */
  530. function random($length = 6 , $numeric = 0) {
  531. PHP_VERSION < '4.2.0' && mt_srand((double)microtime() * 1000000);
  532. if($numeric) {
  533. $hash = sprintf('%0'.$length.'d', mt_rand(0, pow(10, $length) - 1));
  534. } else {
  535. $hash = '';
  536. $chars = 'ABCDEFGHJKLMNPQRSTUVWXYZ23456789abcdefghjkmnpqrstuvwxyz';
  537. $max = strlen($chars) - 1;
  538. for($i = 0; $i < $length; $i++) {
  539. $hash .= $chars[mt_rand(0, $max)];
  540. }
  541. }
  542. return $hash;
  543. }
  544. /* 发送验证码 -- 阿里云 */
  545. function sendCode($mobile,$code){
  546. $rs = array('code' => 0, 'msg' => '', 'info' => array());
  547. $config = getConfigPri();
  548. if(!$config['sendcode_switch']){
  549. $rs['code']=667;
  550. $rs['msg']='123456';
  551. return $rs;
  552. }
  553. $rs=sendCodeByAli($mobile,$code);
  554. return $rs;
  555. }
  556. //阿里云短信
  557. function sendCodeByAli($mobile,$code){
  558. $rs = array('code' => 0, 'msg' => '', 'info' => array());
  559. $configpri = getConfigPri();
  560. require_once CMF_ROOT.'sdk/aliyunsms/AliSmsApi.php';
  561. $config = array(
  562. 'accessKeyId' =>$configpri['aly_keydi'],
  563. 'accessKeySecret' =>$configpri['aly_secret'],
  564. 'PhoneNumbers' => $mobile,
  565. 'SignName' => $configpri['aly_signName'],
  566. 'TemplateCode' => $configpri['aly_templateCode'],
  567. 'TemplateParam' => array("code"=>$code)
  568. );
  569. $go = new \AliSmsApi($config);
  570. $result = $go->send_sms();
  571. file_put_contents(CMF_ROOT.'log/sendCode_aly_'.date('Y-m-d').'.txt',date('Y-m-d H:i:s').' 提交参数信息 result:'.json_encode($result)."\r\n",FILE_APPEND);
  572. if($result == NULL ) {
  573. $rs['code']=1002;
  574. $rs['msg']="发送失败";
  575. return $rs;
  576. }
  577. if($result['Code']!='OK') {
  578. //TODO 添加错误处理逻辑
  579. $rs['code']=1002;
  580. $rs['msg']="获取失败";
  581. return $rs;
  582. }
  583. return $rs;
  584. }
  585. /* 检测用户是否存在 */
  586. function checkUser($where){
  587. if(!$where){
  588. return 0;
  589. }
  590. $isexist=Db::name('user')->field('id')->where($where)->find();
  591. if($isexist){
  592. return 1;
  593. }
  594. return 0;
  595. }
  596. /* 管理员操作日志 */
  597. function setAdminLog($action){
  598. $data=array(
  599. 'adminid'=>session('ADMIN_ID'),
  600. 'admin'=>session('name'),
  601. 'action'=>$action,
  602. 'ip'=>ip2long(get_client_ip(0,true)),
  603. 'addtime'=>time(),
  604. );
  605. Db::name("admin_log")->insert($data);
  606. return !0;
  607. }