common.php 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367
  1. <?php
  2. use think\Db;
  3. /**
  4. * 秒转换为天
  5. */
  6. function get_stay_time($remain_time, $is_hour = 1, $is_minutes = 1)
  7. {
  8. $day = floor($remain_time / (3600*24));
  9. $day = $day > 0 ? $day.'天' : '';
  10. $hour = floor(($remain_time % (3600*24)) / 3600);
  11. $hour = $hour > 0 ? $hour.'小时' : '';
  12. if($is_hour && $is_minutes) {
  13. $minutes = floor((($remain_time % (3600*24)) % 3600) / 60);
  14. $minutes = $minutes > 0 ? $minutes.'分钟' : '';
  15. return $day.$hour.$minutes;
  16. }
  17. if($hour) {
  18. return $day.$hour;
  19. }
  20. return $day;
  21. }
  22. //获取全图片地址 $image_data
  23. function image_path($image_data){
  24. if(empty($image_data)){
  25. return $image_data;
  26. }
  27. if (strpos($image_data,'|')!==false){
  28. $image_res = explode('|',$image_data);
  29. }elseif(strpos($image_data,',')!==false){
  30. $image_res = explode(',',$image_data);
  31. }else{
  32. $image_res = array($image_data);
  33. }
  34. return $image_res;
  35. }
  36. /**
  37. * @param $id_card
  38. * @return false|string
  39. */
  40. function get_age($id_card){
  41. # 1.从身份证中获取出生日期
  42. $birth_Date = strtotime(substr($id_card, 6, 8));//截取日期并转为时间戳
  43. # 2.格式化[出生日期]
  44. $Year = date('Y', $birth_Date);//yyyy
  45. $Month = date('m', $birth_Date);//mm
  46. $Day = date('d', $birth_Date);//dd
  47. # 3.格式化[当前日期]
  48. $current_Y = date('Y');//yyyy
  49. $current_M = date('m');//mm
  50. $current_D = date('d');//dd
  51. # 4.计算年龄()
  52. $age = $current_Y - $Year;//今年减去生日年
  53. if($Month > $current_M || $Month == $current_M && $Day > $current_D){//深层判断(日)
  54. $age--;//如果出生月大于当前月或出生月等于当前月但出生日大于当前日则减一岁
  55. }
  56. # 返回
  57. return $age;
  58. }
  59. function create_invite_code($user_id){
  60. // 生成12位邀请码
  61. $code_str = '';
  62. $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");
  63. $code_key = array_rand($base_code, 10 - strlen($user_id));
  64. array_map(function ($val)use (&$code_str,$base_code){
  65. $code_str .=$base_code[$val] ;
  66. },$code_key);
  67. return $code_str.$user_id;
  68. }
  69. // 获取模板区域
  70. function get_city_area()
  71. {
  72. $field=['id','pid','name'];
  73. $list=Db::name('china_area')->where('pid',0)->field($field)->select();
  74. foreach ($list as $k=>&$v){
  75. $v['children']= Db::name('china_area')->where('pid',$v['id'])->field($field)->select();
  76. }
  77. return $list;
  78. }
  79. function http_curl($url,$type='get',$res='json',$arr=''){
  80. $headers = array();
  81. //根据API的要求,定义相对应的Content-Type
  82. array_push($headers, "Content-Type".":"."application/x-www-form-urlencoded; charset=UTF-8;application/json");
  83. $curl = curl_init();
  84. curl_setopt($curl, CURLOPT_CUSTOMREQUEST, $type);
  85. curl_setopt($curl, CURLOPT_URL, $url);
  86. curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
  87. curl_setopt($curl, CURLOPT_FAILONERROR, false);
  88. curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
  89. curl_setopt($curl, CURLOPT_HEADER, false);
  90. $output = curl_exec($curl);
  91. curl_close($curl);
  92. if($res=='json'){
  93. if($output === false){
  94. //请求失败,返回错误信息
  95. return curl_error($curl);
  96. }else{
  97. //请求成功,返回信息
  98. return json_decode($output,true);
  99. }
  100. }
  101. }
  102. function curl_get($url)
  103. {
  104. $ch = curl_init();
  105. curl_setopt($ch, CURLOPT_URL, $url);
  106. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  107. $output = curl_exec($ch);
  108. curl_close($ch);
  109. if($output === false){
  110. return curl_error($ch);
  111. }else{
  112. return json_decode($output,true);
  113. }
  114. }
  115. function curl_post($url,$post_data)
  116. {
  117. // 1. 初始化一个cURL会话
  118. //根据API的要求,定义相对应的Content-Type
  119. $headers = [];
  120. array_push($headers, "Content-Type".":"."application/json");
  121. $ch = curl_init();
  122. // 2. 设置请求选项, 包括具体的url
  123. curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
  124. curl_setopt($ch, CURLOPT_URL, $url);
  125. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  126. // 设置请求为post类型
  127. curl_setopt($ch, CURLOPT_POST, 1);
  128. // 添加post数据到请求中
  129. curl_setopt($ch, CURLOPT_POSTFIELDS, $post_data);
  130. curl_setopt($ch, CURLOPT_HEADER, 0);
  131. // 3. 执行一个cURL会话并且获取相关回复
  132. $response = curl_exec($ch);
  133. // 4. 释放cURL句柄,关闭一个cURL会话
  134. curl_close($ch);
  135. return json_decode($response,true);
  136. }
  137. // 获取物流信息
  138. function get_delivery($send_no = 'JD0053309649641',$express_code=''){
  139. error_reporting(E_ALL || ~E_NOTICE);
  140. $AppKey = 204111217;
  141. $AppSecret ='LGUYqAh335HMec0eyJZdiHwMhrapU1fH';
  142. $AppCode ='5f96216347b547579e2417685ee8e647';//开通服务后 买家中心-查看AppCode
  143. $host = "https://wuliu.market.alicloudapi.com";//api访问链接
  144. $path = "/kdi";//API访问后缀
  145. $method = "GET";
  146. $body ='';
  147. $headers = array();
  148. array_push($headers, "Authorization:APPCODE " . $AppCode);
  149. $querys = "no={$send_no}&type={$express_code}"; //参数写在这里
  150. $url = $host . $path . "?" . $querys;
  151. $curl = curl_init();
  152. curl_setopt($curl, CURLOPT_CUSTOMREQUEST, $method);
  153. curl_setopt($curl, CURLOPT_URL, $url);
  154. curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
  155. curl_setopt($curl, CURLOPT_FAILONERROR, false);
  156. curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
  157. curl_setopt($curl, CURLOPT_HEADER, true);
  158. if (1 == strpos("$" . $host, "https://")) {
  159. curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
  160. curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, false);
  161. }
  162. $out_put = curl_exec($curl);
  163. $httpCode = curl_getinfo($curl, CURLINFO_HTTP_CODE);
  164. list($header, $body) = explode("\r\n\r\n", $out_put, 2);
  165. if ($httpCode == 200) {
  166. return json_decode($body,true)['result'];
  167. } else {
  168. return [];
  169. }
  170. }
  171. // 实名认证
  172. function user_certification($id_card,$name){
  173. $host = "http://checkone.market.alicloudapi.com";
  174. $path = "/chinadatapay/1882";
  175. $method = "POST";
  176. $appcode = "30be8bdcc65842919980a8276ffc4995";
  177. $headers = array();
  178. array_push($headers, "Authorization:APPCODE " . $appcode);
  179. //根据API的要求,定义相对应的Content-Type
  180. array_push($headers, "Content-Type".":"."application/x-www-form-urlencoded; charset=UTF-8");
  181. $bodys = "idcard=".$id_card."&name=".$name;
  182. $url = $host . $path;
  183. $curl = curl_init();
  184. curl_setopt($curl, CURLOPT_CUSTOMREQUEST, $method);
  185. curl_setopt($curl, CURLOPT_URL, $url);
  186. curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
  187. curl_setopt($curl, CURLOPT_FAILONERROR, false);
  188. curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
  189. curl_setopt($curl, CURLOPT_HEADER, false);
  190. if (1 == strpos("$".$host, "https://"))
  191. {
  192. curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
  193. curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, false);
  194. }
  195. curl_setopt($curl, CURLOPT_POSTFIELDS, $bodys);
  196. $res = curl_exec($curl);
  197. if($res){
  198. $res = json_decode($res,true);
  199. if($res['data']['result'] == 1){
  200. return 1;
  201. }else{
  202. return 0;
  203. }
  204. }else{
  205. return 0;
  206. }
  207. }
  208. /**
  209.  * 把返回的数据集转换成Tree
  210.  * @param array $list 要转换的数据集
  211.  * @param string $pk 自增字段(栏目id)
  212.  * @param string $pid parent标记字段
  213.  * @return array
  214.  */
  215. function make_tree($list,$pk='id',$pid='pid',$child='children',$root=0){
  216. if(is_object($list)) $list = $list->toArray();
  217. $tree=array();
  218. $packData=array();
  219. foreach ($list as $data) {
  220. $packData[$data[$pk]] = $data;
  221. }
  222. foreach ($packData as $key =>$val){
  223. if($val[$pid]==$root){//代表跟节点
  224. $tree[]=& $packData[$key];
  225. }else{
  226. $packData[$val[$pid]][$child][]=& $packData[$key]; //找到其父类
  227. }
  228. }
  229. return $tree;
  230. }
  231. //判断字段存在并不为空
  232. function isset_full($arr, $key)
  233. {
  234. if (isset($arr[$key]) && !empty($arr[$key])) {
  235. return true;
  236. } else {
  237. return false;
  238. }
  239. }
  240. //判断字段存在并不为空 并且等于验证值
  241. function isset_full_check($arr, $key,$check_val)
  242. {
  243. if (isset($arr[$key]) && !empty($arr[$key]) && $arr[$key] == $check_val) {
  244. return true;
  245. } else {
  246. return false;
  247. }
  248. }
  249. function all_pay_type()
  250. {
  251. return [ '--','微信[H5]','支付宝[H5]','微信[APP]','支付宝[APP]','微信[公众号]' ];
  252. }
  253. /**
  254. * @param $start 验证开始时间
  255. * @param $end 验证结束时间
  256. * @param $check_st 已有活动开始时间
  257. * @param $check_end 已有活动结束时间
  258. * @return bool true 可以创建活动
  259. */
  260. function check_act_time($start,$end,$check_st,$check_end)
  261. {
  262. $check_val = false;
  263. if($start > $check_end || $end < $check_st) $check_val = true;
  264. return $check_val;
  265. }
  266. /**
  267. * 生成32位随机数
  268. */
  269. function get32Str($length='32'){
  270. $str = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789';
  271. $len = strlen($str)-1;
  272. $randstr = '';
  273. for ($i=0;$i<$length;$i++) {
  274. $num=mt_rand(0,$len);
  275. $randstr .= $str[$num];
  276. }
  277. return $randstr;
  278. }
  279. function requestPost($url , $post_data = array() ){
  280. // 1. 初始化一个cURL会话
  281. $ch = curl_init();
  282. // 2. 设置请求选项, 包括具体的url
  283. curl_setopt($ch, CURLOPT_URL, $url);
  284. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  285. // 设置请求为post类型
  286. curl_setopt($ch, CURLOPT_POST, 1);
  287. // 添加post数据到请求中
  288. curl_setopt($ch, CURLOPT_POSTFIELDS, $post_data);
  289. curl_setopt($ch, CURLOPT_HEADER, 0);
  290. // 3. 执行一个cURL会话并且获取相关回复
  291. $response = curl_exec($ch);
  292. // 4. 释放cURL句柄,关闭一个cURL会话
  293. curl_close($ch);
  294. return $response;
  295. }
  296. /**
  297. * get请求
  298. * @param $url
  299. * @param string $msg
  300. * @return mixed
  301. */
  302. function requestGet($url , $msg = ''){
  303. // 1. 初始化一个cURL会话
  304. $ch = curl_init();
  305. //设置选项,包括URL
  306. curl_setopt($ch, CURLOPT_URL, $url);
  307. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  308. curl_setopt($ch, CURLOPT_HEADER, 0);
  309. //执行并获取HTML文档内容
  310. $response = curl_exec($ch);
  311. // 4. 释放cURL句柄,关闭一个cURL会话
  312. curl_close($ch);
  313. return $response;
  314. }
  315. function phpExcelList($field=[],$list=[],$title='文件'){
  316. $PHPExcel=new \PHPExcel();
  317. $PHPSheet=$PHPExcel->getActiveSheet();
  318. $PHPSheet->setTitle('demo'); //给当前活动sheet设置名称
  319. foreach($list as $key=>$value)
  320. {
  321. foreach($field as $k=>$v){
  322. if($key == 0){
  323. $PHPSheet= $PHPExcel->getActiveSheet()->setCellValue($k.'1',$v[1]);
  324. }
  325. $i=$key+2;
  326. $PHPExcel->getActiveSheet()->setCellValue($k . $i, $value[$v[0]]);
  327. }
  328. }
  329. $PHPWriter = \PHPExcel_IOFactory::createWriter($PHPExcel,'Excel2007'); //按照指定格式生成Excel文件,
  330. header('Content-Type: application/vnd.ms-excel'); // 告诉浏览器生成一个excel05版的表格
  331. header("Content-Disposition: attachment;filename={$title}.xls"); //告诉浏览器输出文件的名称
  332. header('Cache-Control: max-age=0'); //禁止缓存
  333. $PHPWriter->save("php://output"); //输出到浏览器
  334. }