|
@@ -24,14 +24,6 @@ use function AlibabaCloud\Client\value;
|
|
|
|
|
|
class Qc extends Base {
|
|
|
|
|
|
- public function cookie()
|
|
|
- {
|
|
|
- var_dump(56666);
|
|
|
- $a = setcookie('aa',666,time() +666666);
|
|
|
- var_dump($a);
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
// 热搜设置
|
|
|
public function topSearchSet()
|
|
|
{
|
|
@@ -102,60 +94,6 @@ class Qc extends Base {
|
|
|
});
|
|
|
|
|
|
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- public function getUserByToken()
|
|
|
- {
|
|
|
- $key = md5(config('app.jwt'));
|
|
|
- $authorization = input('token');
|
|
|
- $check_authorization = JWT::decode($authorization, $key, array('HS256'));
|
|
|
- var_dump($check_authorization);
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- public function sj()
|
|
|
- {
|
|
|
- $list= User::where('status',1)->orderRaw('rand()')->limit(10)->select()->toArray();
|
|
|
- var_dump($list);
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- public function recommend()
|
|
|
- {
|
|
|
- $module = input('module');
|
|
|
- $user_id = input('user_id');
|
|
|
- $page = input('page',1);
|
|
|
- $page_num = input('page_num',20);
|
|
|
- $res = UserSynth::getRecommendList($user_id,$module,$page,$page_num);
|
|
|
- $this->success('ok',$res);
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- //
|
|
|
- public function ticketPic()
|
|
|
- {
|
|
|
- $path = env('root_path').'static/page_pic';
|
|
|
- //var_dump($path);die();
|
|
|
- $url = $this->request->root(true)."/dist/#/index";
|
|
|
- $html = file_get_contents($url);
|
|
|
- $ttf_url = '/static/msyh.ttf';
|
|
|
- $image = imagecreatetruecolor(1000,2000);
|
|
|
- $myImage = imageCreate(200,500);
|
|
|
- $red = imagecolorallocate($myImage,255,0,0);
|
|
|
- $textColor="#5e1709";
|
|
|
- $R = hexdec(substr($textColor, 1, 2));
|
|
|
- $G = hexdec(substr($textColor, 3, 2));
|
|
|
- $B = hexdec(substr($textColor, 5));
|
|
|
- imagettftext($myImage,12,5,20,10,imagecolorallocatealpha($myImage, $R, $G, $B,50),$ttf_url,'aaa');
|
|
|
- header("Content-type:image/png");
|
|
|
- imagepng($myImage,$path.'qc.png');
|
|
|
- imagedestroy($myImage);
|
|
|
- $this->success('ok',$path.'qc.png');
|
|
|
}
|
|
|
|
|
|
|
|
@@ -183,15 +121,6 @@ class Qc extends Base {
|
|
|
$this->success('ok',$res);
|
|
|
}
|
|
|
|
|
|
- function index ()
|
|
|
- {
|
|
|
- $st = '12ABcc';
|
|
|
- $st1 = '12abcc';
|
|
|
- var_dump(666666);
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
public function sendEmail()
|
|
|
{
|
|
|
$this->success(send_email('913856018@qq.com','AAAAAAAAAAAAAAAAA'));
|
|
@@ -205,19 +134,6 @@ class Qc extends Base {
|
|
|
//密码必须包含大小写字母/数字/符号任意两者组合
|
|
|
$regStr = "/^(?![0-9]+$)(?![a-z]+$)(?![A-Z]+$)(?!([^(0-9a-zA-Z)]|[\(\)])+$)([^(0-9a-zA-Z)]|[\(\)]|[a-z]|[A-Z]|[0-9]){6,16}$/";
|
|
|
var_dump(preg_match($regStr, $password));
|
|
|
-
|
|
|
-
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- public function changeReadNum()
|
|
|
- {
|
|
|
- $list= DatumIntro::where('is_deleted',0)->select()->toArray();
|
|
|
- foreach ($list as $v)
|
|
|
- {
|
|
|
- $read_num = DatumUrl::where('datum_id',$v['id'])->sum('read_num');
|
|
|
- if($read_num > 0) DatumIntro::where('id',$v['id'])->update(['read_num'=>$read_num]);
|
|
|
- }
|
|
|
}
|
|
|
|
|
|
|