123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- <?php
- namespace app\api\controller;
- use app\api\controller\WeChart;
- use think\Exception;
- use think\Session;
- use think\cache\driver\Redis;
- use EasyWeChat\Factory;
- use Firebase\JWT\JWT;
- use think\Db;
- use AlibabaCloud\Client\AlibabaCloud;
- use AlibabaCloud\Client\Exception\ClientException;
- use AlibabaCloud\Client\Exception\ServerException;
- use function AlibabaCloud\Client\value;
- class Qc extends Base {
- /**
- * @title 发送短信验证码
- * @desc 发送短信验证码
- * @author QGF
- * @url /api/Qc/sendSms
- * @method POST
- * @tag 短信验证码
- * @param name:phone type:int require:1 default:-- desc:要获取验证码的手机号
- * @return name:code type:string default:-- desc:验证码
- */
- public function index(){
- $id_card = '371322199502023422';
- $name ='樊春雨';
- var_dump( user_certification($id_card,$name));
- }
- function getAge($id){
- # 1.从身份证中获取出生日期
- $birth_Date = strtotime(substr($id, 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;
- }
- public function checkBuyAll($goods_id,$user_id,$is_all = 0)
- {
- $data = array(
- array(
- 'id' => 5698,
- 'first_name' => 'Bill',
- 'last_name' => 'Gates',
- ),
- array(
- 'id' => 4767,
- 'first_name' => 'Steve',
- 'last_name' => 'Aobs',
- ),
- array(
- 'id' => 3809,
- 'first_name' => 'Mark',
- 'last_name' => 'Zuckerberg',
- )
- );
- //根据字段last_name对数组$data进行降序排列
- $last_names = array_column($data,'last_name');
- array_multisort($last_names,SORT_DESC,$data);
- }
- public function get_token(){
- $uid = 17;
- $key = md5(config('app.jwt')); //jwt的签发密钥,验证token的时候需要用到
- $time = time(); //签发时间
- $expire = $time + config('app.jwt_time'); //过期时间
- $token = array(
- "uid" => $uid,
- "iss" => "https://zain.com",//签发组织
- "aud" => "https://zain.com", //签发作者
- "iat" => $time,
- "nbf" => $time,
- "exp" => $expire
- );
- $jwt = JWT::encode($token, $key);
- var_dump($jwt);
- }
- }
|