common.php 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473
  1. <?php
  2. use AlibabaCloud\Client\Exception\ClientException;
  3. use AlibabaCloud\Client\Exception\ServerException;
  4. use app\common\model\User;
  5. use think\Db;
  6. use Dm\Request\V20151123 as Dm;
  7. /**
  8. * 秒转换为天
  9. */
  10. function get_stay_time($remain_time, $is_hour = 1, $is_minutes = 1)
  11. {
  12. $day = floor($remain_time / (3600*24));
  13. $day = $day > 0 ? $day.'天' : '';
  14. $hour = floor(($remain_time % (3600*24)) / 3600);
  15. $hour = $hour > 0 ? $hour.'小时' : '';
  16. if($is_hour && $is_minutes) {
  17. $minutes = floor((($remain_time % (3600*24)) % 3600) / 60);
  18. $minutes = $minutes > 0 ? $minutes.'分钟' : '';
  19. return $day.$hour.$minutes;
  20. }
  21. if($hour) {
  22. return $day.$hour;
  23. }
  24. return $day;
  25. }
  26. //获取全图片地址 $image_data
  27. function image_path($image_data){
  28. if(empty($image_data)){
  29. return $image_data;
  30. }
  31. if (strpos($image_data,'|')!==false){
  32. $image_res = explode('|',$image_data);
  33. }elseif(strpos($image_data,',')!==false){
  34. $image_res = explode(',',$image_data);
  35. }else{
  36. $image_res = array($image_data);
  37. }
  38. return $image_res;
  39. }
  40. /**
  41. * @param $id_card
  42. * @return false|string
  43. */
  44. function get_age($id_card){
  45. # 1.从身份证中获取出生日期
  46. $birth_Date = strtotime(substr($id_card, 6, 8));//截取日期并转为时间戳
  47. # 2.格式化[出生日期]
  48. $Year = date('Y', $birth_Date);//yyyy
  49. $Month = date('m', $birth_Date);//mm
  50. $Day = date('d', $birth_Date);//dd
  51. # 3.格式化[当前日期]
  52. $current_Y = date('Y');//yyyy
  53. $current_M = date('m');//mm
  54. $current_D = date('d');//dd
  55. # 4.计算年龄()
  56. $age = $current_Y - $Year;//今年减去生日年
  57. if($Month > $current_M || $Month == $current_M && $Day > $current_D){//深层判断(日)
  58. $age--;//如果出生月大于当前月或出生月等于当前月但出生日大于当前日则减一岁
  59. }
  60. # 返回
  61. return $age;
  62. }
  63. function create_invite_code($user_id){
  64. // 生成12位邀请码
  65. $code_str = '';
  66. $base_code = explode(',',"A,B,C,D,E,F,G,H,J,K,L,M,N,P,Q,R,S,T,U,V,W,X,Y,Z");
  67. $code_key = array_rand($base_code, 10 - strlen($user_id));
  68. array_map(function ($val)use (&$code_str,$base_code){
  69. $code_str .=$base_code[$val] ;
  70. },$code_key);
  71. return $code_str.$user_id;
  72. }
  73. // 获取模板区域
  74. function get_city_area()
  75. {
  76. $field=['id','pid','name'];
  77. $list=Db::name('china_area')->where('pid',0)->field($field)->select();
  78. foreach ($list as $k=>&$v){
  79. $v['children']= Db::name('china_area')->where('pid',$v['id'])->field($field)->select();
  80. }
  81. return $list;
  82. }
  83. function http_curl($url,$type='get',$res='json',$arr=''){
  84. $headers = array();
  85. //根据API的要求,定义相对应的Content-Type
  86. array_push($headers, "Content-Type".":"."application/x-www-form-urlencoded; charset=UTF-8;application/json");
  87. $curl = curl_init();
  88. curl_setopt($curl, CURLOPT_CUSTOMREQUEST, $type);
  89. curl_setopt($curl, CURLOPT_URL, $url);
  90. curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
  91. curl_setopt($curl, CURLOPT_FAILONERROR, false);
  92. curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
  93. curl_setopt($curl, CURLOPT_HEADER, false);
  94. $output = curl_exec($curl);
  95. curl_close($curl);
  96. if($res=='json'){
  97. if($output === false){
  98. //请求失败,返回错误信息
  99. return curl_error($curl);
  100. }else{
  101. //请求成功,返回信息
  102. return json_decode($output,true);
  103. }
  104. }
  105. }
  106. function curl_get($url)
  107. {
  108. $ch = curl_init();
  109. curl_setopt($ch, CURLOPT_URL, $url);
  110. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  111. $output = curl_exec($ch);
  112. curl_close($ch);
  113. if($output === false){
  114. return curl_error($ch);
  115. }else{
  116. return json_decode($output,true);
  117. }
  118. }
  119. // 获取物流信息
  120. function get_delivery($send_no = 'YT7245284655017',$express_code=''){
  121. error_reporting(E_ALL || ~E_NOTICE);
  122. $AppCode ='5f96216347b547579e2417685ee8e647';//开通服务后 买家中心-查看AppCode
  123. $host = "https://wuliu.market.alicloudapi.com";//api访问链接
  124. $path = "/kdi";//API访问后缀
  125. $method = "GET";
  126. $body ='';
  127. $headers = array();
  128. array_push($headers, "Authorization:APPCODE " . $AppCode);
  129. $querys = "no={$send_no}&type={$express_code}"; //参数写在这里
  130. $url = $host . $path . "?" . $querys;
  131. $curl = curl_init();
  132. curl_setopt($curl, CURLOPT_CUSTOMREQUEST, $method);
  133. curl_setopt($curl, CURLOPT_URL, $url);
  134. curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
  135. curl_setopt($curl, CURLOPT_FAILONERROR, false);
  136. curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
  137. curl_setopt($curl, CURLOPT_HEADER, true);
  138. if (1 == strpos("$" . $host, "https://")) {
  139. curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
  140. curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, false);
  141. }
  142. $out_put = curl_exec($curl);
  143. $httpCode = curl_getinfo($curl, CURLINFO_HTTP_CODE);
  144. list($header, $body) = explode("\r\n\r\n", $out_put, 2);
  145. if ($httpCode == 200) {
  146. return json_decode($body,true)['result'];
  147. } else {
  148. return [];
  149. }
  150. }
  151. // 实名认证
  152. function user_certification($id_card,$name){
  153. $host = "http://checkone.market.alicloudapi.com";
  154. $path = "/chinadatapay/1882";
  155. $method = "POST";
  156. $appcode = "30be8bdcc65842919980a8276ffc4995";
  157. $headers = array();
  158. array_push($headers, "Authorization:APPCODE " . $appcode);
  159. //根据API的要求,定义相对应的Content-Type
  160. array_push($headers, "Content-Type".":"."application/x-www-form-urlencoded; charset=UTF-8");
  161. $bodys = "idcard=".$id_card."&name=".$name;
  162. $url = $host . $path;
  163. $curl = curl_init();
  164. curl_setopt($curl, CURLOPT_CUSTOMREQUEST, $method);
  165. curl_setopt($curl, CURLOPT_URL, $url);
  166. curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
  167. curl_setopt($curl, CURLOPT_FAILONERROR, false);
  168. curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
  169. curl_setopt($curl, CURLOPT_HEADER, false);
  170. if (1 == strpos("$".$host, "https://"))
  171. {
  172. curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
  173. curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, false);
  174. }
  175. curl_setopt($curl, CURLOPT_POSTFIELDS, $bodys);
  176. $res = curl_exec($curl);
  177. if($res){
  178. $res = json_decode($res,true);
  179. if($res['data']['result'] == 1){
  180. return 1;
  181. }else{
  182. return 0;
  183. }
  184. }else{
  185. return 0;
  186. }
  187. }
  188. /**
  189.  * 把返回的数据集转换成Tree
  190.  * @param array $list 要转换的数据集
  191.  * @param string $pk 自增字段(栏目id)
  192.  * @param string $pid parent标记字段
  193.  * @return array
  194.  */
  195. function make_tree($list,$pk='id',$pid='pid',$child='children',$root=0){
  196. if(is_object($list)) $list = $list->toArray();
  197. $tree=array();
  198. $packData=array();
  199. foreach ($list as $data) {
  200. $packData[$data[$pk]] = $data;
  201. }
  202. foreach ($packData as $key =>$val){
  203. if($val[$pid]==$root){//代表跟节点
  204. $tree[]=& $packData[$key];
  205. }else{
  206. $packData[$val[$pid]][$child][]=& $packData[$key]; //找到其父类
  207. }
  208. }
  209. return $tree;
  210. }
  211. //判断字段存在并不为空
  212. function isset_full($arr, $key)
  213. {
  214. if (isset($arr[$key]) && !empty($arr[$key])) {
  215. return true;
  216. } else {
  217. return false;
  218. }
  219. }
  220. //判断字段存在并不为空 并且等于验证值
  221. function isset_full_check($arr, $key,$check_val)
  222. {
  223. if (isset($arr[$key]) && !empty($arr[$key]) && $arr[$key] == $check_val) {
  224. return true;
  225. } else {
  226. return false;
  227. }
  228. }
  229. function all_pay_type()
  230. {
  231. return [ '--','微信[H5]','支付宝[H5]','微信[APP]','支付宝[APP]','微信[公众号]','微信[PC]','支付宝[PC]' ];
  232. }
  233. /**
  234. * @param $start 验证开始时间
  235. * @param $end 验证结束时间
  236. * @param $check_st 已有活动开始时间
  237. * @param $check_end 已有活动结束时间
  238. * @return bool true 可以创建活动
  239. */
  240. function check_act_time($start,$end,$check_st,$check_end)
  241. {
  242. $check_val = false;
  243. if($start > $check_end || $end < $check_st) $check_val = true;
  244. return $check_val;
  245. }
  246. /**
  247. * 生成32位随机数
  248. */
  249. function get32Str($length='32'){
  250. $str = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789';
  251. $len = strlen($str)-1;
  252. $randstr = '';
  253. for ($i=0;$i<$length;$i++) {
  254. $num=mt_rand(0,$len);
  255. $randstr .= $str[$num];
  256. }
  257. return $randstr;
  258. }
  259. function hx_register($username){
  260. $data = array(
  261. 'grant_type' => 'client_credentials',
  262. 'client_id' => 'YXA6NS5H0GDGEe20Q9VWb7Fpew',
  263. 'client_secret' => 'YXA6zkYKRQMJbxi_6cN1ERHuFn9QUpI'
  264. );
  265. $token_res = requestPost('https://a1-vip5.easemob.com/1414221110068467/kefuchannelapp104968/token',json_encode($data));
  266. $token_res = json_decode($token_res,true);
  267. $param = array(
  268. 'username' => 'act'.$username.rand(0000,9999),
  269. 'password' => 'act'.$username.rand(00000,99999)
  270. );
  271. $hx_account = http_post_json('https://a1-vip5.easemob.com/1414221110068467/kefuchannelapp104968/users',json_encode($param),$token_res['access_token']);
  272. if(!isset($hx_account['entities'][0]['uuid'])){
  273. return false;
  274. }
  275. Db::name('store_member')->where('id',$username)->update(array('hx_username'=>$param['username'],'hx_password'=>$param['password'],'hx_uuid'=>$hx_account['entities'][0]['uuid']));
  276. return true;
  277. }
  278. function requestPost($url , $post_data = array(),$headers=[] ){
  279. // 1. 初始化一个cURL会话
  280. //根据API的要求,定义相对应的Content-Type
  281. array_push($headers, "Content-Type".":"."application/json");
  282. $ch = curl_init();
  283. // 2. 设置请求选项, 包括具体的url
  284. curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
  285. curl_setopt($ch, CURLOPT_URL, $url);
  286. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  287. // 设置请求为post类型
  288. curl_setopt($ch, CURLOPT_POST, 1);
  289. // 添加post数据到请求中
  290. curl_setopt($ch, CURLOPT_POSTFIELDS, $post_data);
  291. curl_setopt($ch, CURLOPT_HEADER, 0);
  292. // 3. 执行一个cURL会话并且获取相关回复
  293. $response = curl_exec($ch);
  294. // 4. 释放cURL句柄,关闭一个cURL会话
  295. curl_close($ch);
  296. return $response;
  297. }
  298. function http_post_json($url, $jsonStr,$token_res)
  299. {
  300. $headers = ['Authorization:Bearer '.$token_res,'Content-Type: application/json; charset=utf-8',
  301. 'Content-Length: ' . strlen($jsonStr)];
  302. $ch = curl_init();
  303. curl_setopt($ch, CURLOPT_POST, 1);
  304. curl_setopt($ch, CURLOPT_URL, $url);
  305. curl_setopt($ch, CURLOPT_POSTFIELDS, $jsonStr);
  306. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  307. curl_setopt($ch,CURLOPT_HTTPHEADER,$headers);
  308. $response = curl_exec($ch);
  309. $httpCode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
  310. curl_close($ch);
  311. return json_decode($response,true);
  312. }
  313. function pdfCurl($file_name,$source = 1)
  314. {
  315. $ch = curl_init();
  316. curl_setopt($ch, CURLOPT_URL, 'https://pdf.gyxqcdz.com/v1/pdf/upload');
  317. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  318. curl_setopt($ch, CURLOPT_POST, 1);
  319. //curl_setopt($ch, CURLOPT_POSTFIELDS, 'file=@'.$file_name);// pdf demo
  320. if($source == 1) {
  321. curl_setopt($ch, CURLOPT_POSTFIELDS, ['file'=>new \CURLFile(realpath($file_name))]); // 本地服务器路径
  322. }else{
  323. curl_setopt($ch, CURLOPT_POSTFIELDS, ['file'=>new \CURLFile($file_name)]);// oss路径
  324. }
  325. $headers = array();
  326. // $headers[] = 'Content-Type: application/x-www-form-urlencoded';
  327. // $headers[] = 'Content-Type: multipart/form-data';
  328. // curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
  329. $result = curl_exec($ch);
  330. if (curl_errno($ch)) {
  331. echo 'Error:' . curl_error($ch);
  332. }
  333. curl_close($ch);
  334. return json_decode($result,true);
  335. }
  336. function curl_post($url,$post_data)
  337. {
  338. // 1. 初始化一个cURL会话
  339. //根据API的要求,定义相对应的Content-Type
  340. $headers = [];
  341. array_push($headers, "Content-Type".":"."application/json");
  342. $ch = curl_init();
  343. // 2. 设置请求选项, 包括具体的url
  344. curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
  345. curl_setopt($ch, CURLOPT_URL, $url);
  346. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  347. // 设置请求为post类型
  348. curl_setopt($ch, CURLOPT_POST, 1);
  349. // 添加post数据到请求中
  350. curl_setopt($ch, CURLOPT_POSTFIELDS, $post_data);
  351. curl_setopt($ch, CURLOPT_HEADER, 0);
  352. // 3. 执行一个cURL会话并且获取相关回复
  353. $response = curl_exec($ch);
  354. // 4. 释放cURL句柄,关闭一个cURL会话
  355. curl_close($ch);
  356. return json_decode($response,true);
  357. }
  358. function getVideoTime($ali_id)
  359. {
  360. $res = (new \app\api\controller\VideoDemand())->getVideoInfo($ali_id);
  361. if(empty($res['videoBase'])) return ['duration'=>0 ,'duration_str'=>''];
  362. return ['duration'=>intval($res['videoBase']['duration']) ,'duration_str'=>get_stay_time(intval($res['videoBase']['duration']))];
  363. }
  364. function dispose_recommend($list,$needle= 'is_recommend')
  365. {
  366. list($l1,$l2) = [[],[]];
  367. foreach ($list as $v) $v[$needle] == 1 ? $l1[] = $v : $l2[] =$v;
  368. shuffle($l1);
  369. shuffle($l2);
  370. return array_merge($l1,$l2);
  371. }
  372. // 生成二维码
  373. function create_qrcode($id,$user_id,$module = 'activity')
  374. {
  375. $qrCode= new \Endroid\QrCode\QrCode();
  376. $dir = dirname(realpath(dirname($_SERVER['SCRIPT_FILENAME']))) . '/public/static/'.$module;
  377. $filename = $dir.'/'.$id.'_'.$user_id.'.png';
  378. @unlink($filename);
  379. $content = 'https://'.$_SERVER['HTTP_HOST']."/dist/#/activity-detail?id=".$id."&tg=".$id.'_'.$user_id;
  380. $qrCode->setText($content);
  381. $qrCode->setSize(200);
  382. $qrCode->writeFile($filename);
  383. $url = 'https://'.$_SERVER['SERVER_NAME']."/static/$module/".$id.'_'.$user_id.'.png';
  384. return $url;
  385. }
  386. function get_short_name($name)
  387. {
  388. if(strlen($name) <= 8) return $name;
  389. return mb_substr($name,1,5).'...';
  390. }
  391. // 邮箱发送
  392. function send_email($email,$content='',$alias = '活动提示')
  393. {
  394. require_once env('root_path').'/vendor/aliyunmail/aliyun-php-sdk-core/Config.php';
  395. $iClientProfile = \DefaultProfile::getProfile("cn-hangzhou", "LTAI5tJ5p12drZegeWVG33xZ", "82UWAiY5e5wH8tSkRvMtqVoGO0h8SB");
  396. $client = new \DefaultAcsClient($iClientProfile);
  397. $request = new Dm\SingleSendMailRequest();
  398. $request->setAccountName("gyx@yzm.gyxqcdz.com");
  399. $request->setFromAlias("[$alias]");
  400. $request->setAddressType(1);
  401. $request->setTagName("activity");
  402. $request->setReplyToAddress("true");
  403. $request->setToAddress($email);
  404. $request->setSubject("$alias");
  405. $html_body = $content;
  406. $request->setHtmlBody($content);
  407. try {
  408. $send_res = $client->getAcsResponse($request);
  409. $sms_data = array(
  410. 'phone'=>$email,
  411. 'code'=>'AAAAA',
  412. 'result'=>'OK'
  413. );
  414. Db::name('store_member_sms')->insert($sms_data);
  415. } catch (ClientException $e) {
  416. return $e->getErrorMessage();
  417. // print_r($e->getErrorCode());
  418. // print_r($e->getErrorMessage());
  419. } catch (ServerException $e) {
  420. return $e->getErrorMessage();
  421. // print_r($e->getErrorCode());
  422. // print_r($e->getErrorMessage());
  423. }catch (Exception $e)
  424. {
  425. return $e->getMessage();
  426. }
  427. return 1;
  428. }