Qc.php 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. <?php
  2. namespace app\api\controller;
  3. use app\api\controller\WeChart;
  4. use think\Exception;
  5. use think\Session;
  6. use think\cache\driver\Redis;
  7. use EasyWeChat\Factory;
  8. use Firebase\JWT\JWT;
  9. use think\Db;
  10. use AlibabaCloud\Client\AlibabaCloud;
  11. use AlibabaCloud\Client\Exception\ClientException;
  12. use AlibabaCloud\Client\Exception\ServerException;
  13. use function AlibabaCloud\Client\value;
  14. class Qc extends Base {
  15. /**
  16. * @title 发送短信验证码
  17. * @desc 发送短信验证码
  18. * @author QGF
  19. * @url /api/Qc/sendSms
  20. * @method POST
  21. * @tag 短信验证码
  22. * @param name:phone type:int require:1 default:-- desc:要获取验证码的手机号
  23. * @return name:code type:string default:-- desc:验证码
  24. */
  25. public function index(){
  26. $id_card = '371322199502023422';
  27. $name ='樊春雨';
  28. var_dump( user_certification($id_card,$name));
  29. }
  30. function getAge($id){
  31. # 1.从身份证中获取出生日期
  32. $birth_Date = strtotime(substr($id, 6, 8));//截取日期并转为时间戳
  33. # 2.格式化[出生日期]
  34. $Year = date('Y', $birth_Date);//yyyy
  35. $Month = date('m', $birth_Date);//mm
  36. $Day = date('d', $birth_Date);//dd
  37. # 3.格式化[当前日期]
  38. $current_Y = date('Y');//yyyy
  39. $current_M = date('m');//mm
  40. $current_D = date('d');//dd
  41. # 4.计算年龄()
  42. $age = $current_Y - $Year;//今年减去生日年
  43. if($Month > $current_M || $Month == $current_M && $Day > $current_D){//深层判断(日)
  44. $age--;//如果出生月大于当前月或出生月等于当前月但出生日大于当前日则减一岁
  45. }
  46. # 返回
  47. return $age;
  48. }
  49. public function checkBuyAll($goods_id,$user_id,$is_all = 0)
  50. {
  51. $data = array(
  52. array(
  53. 'id' => 5698,
  54. 'first_name' => 'Bill',
  55. 'last_name' => 'Gates',
  56. ),
  57. array(
  58. 'id' => 4767,
  59. 'first_name' => 'Steve',
  60. 'last_name' => 'Aobs',
  61. ),
  62. array(
  63. 'id' => 3809,
  64. 'first_name' => 'Mark',
  65. 'last_name' => 'Zuckerberg',
  66. )
  67. );
  68. //根据字段last_name对数组$data进行降序排列
  69. $last_names = array_column($data,'last_name');
  70. array_multisort($last_names,SORT_DESC,$data);
  71. }
  72. public function get_token(){
  73. $uid = 17;
  74. $key = md5(config('app.jwt')); //jwt的签发密钥,验证token的时候需要用到
  75. $time = time(); //签发时间
  76. $expire = $time + config('app.jwt_time'); //过期时间
  77. $token = array(
  78. "uid" => $uid,
  79. "iss" => "https://zain.com",//签发组织
  80. "aud" => "https://zain.com", //签发作者
  81. "iat" => $time,
  82. "nbf" => $time,
  83. "exp" => $expire
  84. );
  85. $jwt = JWT::encode($token, $key);
  86. var_dump($jwt);
  87. }
  88. }