common.php 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284
  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. // 获取物流信息
  116. function get_delivery($send_no = 'JD0053309649641',$express_code=''){
  117. error_reporting(E_ALL || ~E_NOTICE);
  118. $AppKey = 204008273;
  119. $AppSecret ='t9PavvfCeK5v2XidwyK5pWDp8b0hzMq4';
  120. $AppCode ='47f640e3529d43e28365311a530db2b7';//开通服务后 买家中心-查看AppCode
  121. $host = "https://wuliu.market.alicloudapi.com";//api访问链接
  122. $path = "/kdi";//API访问后缀
  123. $method = "GET";
  124. $body ='';
  125. $headers = array();
  126. array_push($headers, "Authorization:APPCODE " . $AppCode);
  127. $querys = "no={$send_no}&type={$express_code}"; //参数写在这里
  128. $url = $host . $path . "?" . $querys;
  129. $curl = curl_init();
  130. curl_setopt($curl, CURLOPT_CUSTOMREQUEST, $method);
  131. curl_setopt($curl, CURLOPT_URL, $url);
  132. curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
  133. curl_setopt($curl, CURLOPT_FAILONERROR, false);
  134. curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
  135. curl_setopt($curl, CURLOPT_HEADER, true);
  136. if (1 == strpos("$" . $host, "https://")) {
  137. curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
  138. curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, false);
  139. }
  140. $out_put = curl_exec($curl);
  141. $httpCode = curl_getinfo($curl, CURLINFO_HTTP_CODE);
  142. list($header, $body) = explode("\r\n\r\n", $out_put, 2);
  143. if ($httpCode == 200) {
  144. return json_decode($body,true)['result'];
  145. } else {
  146. return [];
  147. }
  148. }
  149. // 实名认证
  150. function user_certification($id_card,$name){
  151. $host = "http://checkone.market.alicloudapi.com";
  152. $path = "/chinadatapay/1882";
  153. $method = "POST";
  154. $appcode = "30be8bdcc65842919980a8276ffc4995";
  155. $headers = array();
  156. array_push($headers, "Authorization:APPCODE " . $appcode);
  157. //根据API的要求,定义相对应的Content-Type
  158. array_push($headers, "Content-Type".":"."application/x-www-form-urlencoded; charset=UTF-8");
  159. $bodys = "idcard=".$id_card."&name=".$name;
  160. $url = $host . $path;
  161. $curl = curl_init();
  162. curl_setopt($curl, CURLOPT_CUSTOMREQUEST, $method);
  163. curl_setopt($curl, CURLOPT_URL, $url);
  164. curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
  165. curl_setopt($curl, CURLOPT_FAILONERROR, false);
  166. curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
  167. curl_setopt($curl, CURLOPT_HEADER, false);
  168. if (1 == strpos("$".$host, "https://"))
  169. {
  170. curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
  171. curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, false);
  172. }
  173. curl_setopt($curl, CURLOPT_POSTFIELDS, $bodys);
  174. $res = curl_exec($curl);
  175. if($res){
  176. $res = json_decode($res,true);
  177. if($res['data']['result'] == 1){
  178. return 1;
  179. }else{
  180. return 0;
  181. }
  182. }else{
  183. return 0;
  184. }
  185. }
  186. /**
  187.  * 把返回的数据集转换成Tree
  188.  * @param array $list 要转换的数据集
  189.  * @param string $pk 自增字段(栏目id)
  190.  * @param string $pid parent标记字段
  191.  * @return array
  192.  */
  193. function make_tree($list,$pk='id',$pid='pid',$child='children',$root=0){
  194. if(is_object($list)) $list = $list->toArray();
  195. $tree=array();
  196. $packData=array();
  197. foreach ($list as $data) {
  198. $packData[$data[$pk]] = $data;
  199. }
  200. foreach ($packData as $key =>$val){
  201. if($val[$pid]==$root){//代表跟节点
  202. $tree[]=& $packData[$key];
  203. }else{
  204. $packData[$val[$pid]][$child][]=& $packData[$key]; //找到其父类
  205. }
  206. }
  207. return $tree;
  208. }
  209. //判断字段存在并不为空
  210. function isset_full($arr, $key)
  211. {
  212. if (isset($arr[$key]) && !empty($arr[$key])) {
  213. return true;
  214. } else {
  215. return false;
  216. }
  217. }
  218. //判断字段存在并不为空 并且等于验证值
  219. function isset_full_check($arr, $key,$check_val)
  220. {
  221. if (isset($arr[$key]) && !empty($arr[$key]) && $arr[$key] == $check_val) {
  222. return true;
  223. } else {
  224. return false;
  225. }
  226. }
  227. function all_pay_type()
  228. {
  229. return [ '--','微信[小程序]','余额','支付宝[APP]','微信[APP]','微信[扫码]','支付宝[扫码]' ];
  230. }
  231. /**
  232. * @param $start 验证开始时间
  233. * @param $end 验证结束时间
  234. * @param $check_st 已有活动开始时间
  235. * @param $check_end 已有活动结束时间
  236. * @return bool true 可以创建活动
  237. */
  238. function check_act_time($start,$end,$check_st,$check_end)
  239. {
  240. $check_val = false;
  241. if($start > $check_end || $end < $check_st) $check_val = true;
  242. return $check_val;
  243. }
  244. function get_ck_sn($num = 10){
  245. $order_id_main = date('YmdHis') . rand(1000,9999);
  246. if($num <10) $num = 10;
  247. $order_id_sum = 0;
  248. for($i=0; $i<$num; $i++){
  249. $order_id_sum += (int)(substr($order_id_main,$i,1));
  250. }
  251. $osn = $order_id_main . str_pad((100 - $order_id_sum % 100) % 100,2,'0',STR_PAD_LEFT);
  252. return $osn;
  253. }