123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367 |
- <?php
- use think\Db;
- /**
- * 秒转换为天
- */
- function get_stay_time($remain_time, $is_hour = 1, $is_minutes = 1)
- {
- $day = floor($remain_time / (3600*24));
- $day = $day > 0 ? $day.'天' : '';
- $hour = floor(($remain_time % (3600*24)) / 3600);
- $hour = $hour > 0 ? $hour.'小时' : '';
- if($is_hour && $is_minutes) {
- $minutes = floor((($remain_time % (3600*24)) % 3600) / 60);
- $minutes = $minutes > 0 ? $minutes.'分钟' : '';
- return $day.$hour.$minutes;
- }
- if($hour) {
- return $day.$hour;
- }
- return $day;
- }
- //获取全图片地址 $image_data
- function image_path($image_data){
- if(empty($image_data)){
- return $image_data;
- }
- if (strpos($image_data,'|')!==false){
- $image_res = explode('|',$image_data);
- }elseif(strpos($image_data,',')!==false){
- $image_res = explode(',',$image_data);
- }else{
- $image_res = array($image_data);
- }
- return $image_res;
- }
- /**
- * @param $id_card
- * @return false|string
- */
- function get_age($id_card){
- # 1.从身份证中获取出生日期
- $birth_Date = strtotime(substr($id_card, 6, 8));//截取日期并转为时间戳
- # 2.格式化[出生日期]
- $Year = date('Y', $birth_Date);//yyyy
- $Month = date('m', $birth_Date);//mm
- $Day = date('d', $birth_Date);//dd
- # 3.格式化[当前日期]
- $current_Y = date('Y');//yyyy
- $current_M = date('m');//mm
- $current_D = date('d');//dd
- # 4.计算年龄()
- $age = $current_Y - $Year;//今年减去生日年
- if($Month > $current_M || $Month == $current_M && $Day > $current_D){//深层判断(日)
- $age--;//如果出生月大于当前月或出生月等于当前月但出生日大于当前日则减一岁
- }
- # 返回
- return $age;
- }
- function create_invite_code($user_id){
- // 生成12位邀请码
- $code_str = '';
- $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");
- $code_key = array_rand($base_code, 10 - strlen($user_id));
- array_map(function ($val)use (&$code_str,$base_code){
- $code_str .=$base_code[$val] ;
- },$code_key);
- return $code_str.$user_id;
- }
- // 获取模板区域
- function get_city_area()
- {
- $field=['id','pid','name'];
- $list=Db::name('china_area')->where('pid',0)->field($field)->select();
- foreach ($list as $k=>&$v){
- $v['children']= Db::name('china_area')->where('pid',$v['id'])->field($field)->select();
- }
- return $list;
- }
- function http_curl($url,$type='get',$res='json',$arr=''){
- $headers = array();
- //根据API的要求,定义相对应的Content-Type
- array_push($headers, "Content-Type".":"."application/x-www-form-urlencoded; charset=UTF-8;application/json");
- $curl = curl_init();
- curl_setopt($curl, CURLOPT_CUSTOMREQUEST, $type);
- curl_setopt($curl, CURLOPT_URL, $url);
- curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
- curl_setopt($curl, CURLOPT_FAILONERROR, false);
- curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
- curl_setopt($curl, CURLOPT_HEADER, false);
- $output = curl_exec($curl);
- curl_close($curl);
- if($res=='json'){
- if($output === false){
- //请求失败,返回错误信息
- return curl_error($curl);
- }else{
- //请求成功,返回信息
- return json_decode($output,true);
- }
- }
- }
- function curl_get($url)
- {
- $ch = curl_init();
- curl_setopt($ch, CURLOPT_URL, $url);
- curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
- $output = curl_exec($ch);
- curl_close($ch);
- if($output === false){
- return curl_error($ch);
- }else{
- return json_decode($output,true);
- }
- }
- function curl_post($url,$post_data)
- {
- // 1. 初始化一个cURL会话
- //根据API的要求,定义相对应的Content-Type
- $headers = [];
- array_push($headers, "Content-Type".":"."application/json");
- $ch = curl_init();
- // 2. 设置请求选项, 包括具体的url
- curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
- curl_setopt($ch, CURLOPT_URL, $url);
- curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
- // 设置请求为post类型
- curl_setopt($ch, CURLOPT_POST, 1);
- // 添加post数据到请求中
- curl_setopt($ch, CURLOPT_POSTFIELDS, $post_data);
- curl_setopt($ch, CURLOPT_HEADER, 0);
- // 3. 执行一个cURL会话并且获取相关回复
- $response = curl_exec($ch);
- // 4. 释放cURL句柄,关闭一个cURL会话
- curl_close($ch);
- return json_decode($response,true);
- }
- // 获取物流信息
- function get_delivery($send_no = 'JD0053309649641',$express_code=''){
- error_reporting(E_ALL || ~E_NOTICE);
- $AppKey = 204111217;
- $AppSecret ='LGUYqAh335HMec0eyJZdiHwMhrapU1fH';
- $AppCode ='5f96216347b547579e2417685ee8e647';//开通服务后 买家中心-查看AppCode
- $host = "https://wuliu.market.alicloudapi.com";//api访问链接
- $path = "/kdi";//API访问后缀
- $method = "GET";
- $body ='';
- $headers = array();
- array_push($headers, "Authorization:APPCODE " . $AppCode);
- $querys = "no={$send_no}&type={$express_code}"; //参数写在这里
- $url = $host . $path . "?" . $querys;
- $curl = curl_init();
- curl_setopt($curl, CURLOPT_CUSTOMREQUEST, $method);
- curl_setopt($curl, CURLOPT_URL, $url);
- curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
- curl_setopt($curl, CURLOPT_FAILONERROR, false);
- curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
- curl_setopt($curl, CURLOPT_HEADER, true);
- if (1 == strpos("$" . $host, "https://")) {
- curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
- curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, false);
- }
- $out_put = curl_exec($curl);
- $httpCode = curl_getinfo($curl, CURLINFO_HTTP_CODE);
- list($header, $body) = explode("\r\n\r\n", $out_put, 2);
- if ($httpCode == 200) {
- return json_decode($body,true)['result'];
- } else {
- return [];
- }
- }
- // 实名认证
- function user_certification($id_card,$name){
- $host = "http://checkone.market.alicloudapi.com";
- $path = "/chinadatapay/1882";
- $method = "POST";
- $appcode = "30be8bdcc65842919980a8276ffc4995";
- $headers = array();
- array_push($headers, "Authorization:APPCODE " . $appcode);
- //根据API的要求,定义相对应的Content-Type
- array_push($headers, "Content-Type".":"."application/x-www-form-urlencoded; charset=UTF-8");
- $bodys = "idcard=".$id_card."&name=".$name;
- $url = $host . $path;
- $curl = curl_init();
- curl_setopt($curl, CURLOPT_CUSTOMREQUEST, $method);
- curl_setopt($curl, CURLOPT_URL, $url);
- curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
- curl_setopt($curl, CURLOPT_FAILONERROR, false);
- curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
- curl_setopt($curl, CURLOPT_HEADER, false);
- if (1 == strpos("$".$host, "https://"))
- {
- curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
- curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, false);
- }
- curl_setopt($curl, CURLOPT_POSTFIELDS, $bodys);
- $res = curl_exec($curl);
- if($res){
- $res = json_decode($res,true);
- if($res['data']['result'] == 1){
- return 1;
- }else{
- return 0;
- }
- }else{
- return 0;
- }
- }
- /**
- * 把返回的数据集转换成Tree
- * @param array $list 要转换的数据集
- * @param string $pk 自增字段(栏目id)
- * @param string $pid parent标记字段
- * @return array
- */
- function make_tree($list,$pk='id',$pid='pid',$child='children',$root=0){
- if(is_object($list)) $list = $list->toArray();
- $tree=array();
- $packData=array();
- foreach ($list as $data) {
- $packData[$data[$pk]] = $data;
- }
- foreach ($packData as $key =>$val){
- if($val[$pid]==$root){//代表跟节点
- $tree[]=& $packData[$key];
- }else{
- $packData[$val[$pid]][$child][]=& $packData[$key]; //找到其父类
- }
- }
- return $tree;
- }
- //判断字段存在并不为空
- function isset_full($arr, $key)
- {
- if (isset($arr[$key]) && !empty($arr[$key])) {
- return true;
- } else {
- return false;
- }
- }
- //判断字段存在并不为空 并且等于验证值
- function isset_full_check($arr, $key,$check_val)
- {
- if (isset($arr[$key]) && !empty($arr[$key]) && $arr[$key] == $check_val) {
- return true;
- } else {
- return false;
- }
- }
- function all_pay_type()
- {
- return [ '--','微信[H5]','支付宝[H5]','微信[APP]','支付宝[APP]','微信[公众号]' ];
- }
- /**
- * @param $start 验证开始时间
- * @param $end 验证结束时间
- * @param $check_st 已有活动开始时间
- * @param $check_end 已有活动结束时间
- * @return bool true 可以创建活动
- */
- function check_act_time($start,$end,$check_st,$check_end)
- {
- $check_val = false;
- if($start > $check_end || $end < $check_st) $check_val = true;
- return $check_val;
- }
- /**
- * 生成32位随机数
- */
- function get32Str($length='32'){
- $str = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789';
- $len = strlen($str)-1;
- $randstr = '';
- for ($i=0;$i<$length;$i++) {
- $num=mt_rand(0,$len);
- $randstr .= $str[$num];
- }
- return $randstr;
- }
- function requestPost($url , $post_data = array() ){
- // 1. 初始化一个cURL会话
- $ch = curl_init();
- // 2. 设置请求选项, 包括具体的url
- curl_setopt($ch, CURLOPT_URL, $url);
- curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
- // 设置请求为post类型
- curl_setopt($ch, CURLOPT_POST, 1);
- // 添加post数据到请求中
- curl_setopt($ch, CURLOPT_POSTFIELDS, $post_data);
- curl_setopt($ch, CURLOPT_HEADER, 0);
- // 3. 执行一个cURL会话并且获取相关回复
- $response = curl_exec($ch);
- // 4. 释放cURL句柄,关闭一个cURL会话
- curl_close($ch);
- return $response;
- }
- /**
- * get请求
- * @param $url
- * @param string $msg
- * @return mixed
- */
- function requestGet($url , $msg = ''){
- // 1. 初始化一个cURL会话
- $ch = curl_init();
- //设置选项,包括URL
- curl_setopt($ch, CURLOPT_URL, $url);
- curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
- curl_setopt($ch, CURLOPT_HEADER, 0);
- //执行并获取HTML文档内容
- $response = curl_exec($ch);
- // 4. 释放cURL句柄,关闭一个cURL会话
- curl_close($ch);
- return $response;
- }
- function phpExcelList($field=[],$list=[],$title='文件'){
- $PHPExcel=new \PHPExcel();
- $PHPSheet=$PHPExcel->getActiveSheet();
- $PHPSheet->setTitle('demo'); //给当前活动sheet设置名称
- foreach($list as $key=>$value)
- {
- foreach($field as $k=>$v){
- if($key == 0){
- $PHPSheet= $PHPExcel->getActiveSheet()->setCellValue($k.'1',$v[1]);
- }
- $i=$key+2;
- $PHPExcel->getActiveSheet()->setCellValue($k . $i, $value[$v[0]]);
- }
- }
- $PHPWriter = \PHPExcel_IOFactory::createWriter($PHPExcel,'Excel2007'); //按照指定格式生成Excel文件,
- header('Content-Type: application/vnd.ms-excel'); // 告诉浏览器生成一个excel05版的表格
- header("Content-Disposition: attachment;filename={$title}.xls"); //告诉浏览器输出文件的名称
- header('Cache-Control: max-age=0'); //禁止缓存
- $PHPWriter->save("php://output"); //输出到浏览器
- }
|