摘要: 验证码使用: 首先使用Composer安装think-captcha扩展包: composer require topthink/think-captcha=1.* 模版内验证码的显示 <div>{:captcha_img()}</div> <div><img src="{:captcha_src( 阅读全文
posted @ 2021-01-11 15:52 孙旋 阅读(99) 评论(0) 推荐(0) 编辑
摘要: use Illuminate\Support\Facades\Route; Route::get('/', function () { return view('welcome'); }); //任意方式请求 // Route::any('/login',function(){ // return 阅读全文
posted @ 2021-01-11 13:58 孙旋 阅读(59) 评论(0) 推荐(0) 编辑
摘要: use think\Route; //路由规则 // Route::rule('/a','admin/index/index'); // Route::get('/productlist/:id','/admin/index/productlist');//带参数 // Route::any('/p 阅读全文
posted @ 2021-01-11 13:57 孙旋 阅读(82) 评论(0) 推荐(0) 编辑
摘要: <?php //使用session //设置session // session_start(); // $_SESSION['a'] = 'admin'; //设置cookie,如果有cookie,说明用户已经登陆或者cookie在过期时间内,可以进行页面跳转,直接跳转到首页 if($_COOKI 阅读全文
posted @ 2021-01-09 11:25 孙旋 阅读(48) 评论(0) 推荐(0) 编辑
摘要: <?php header("content-type:text/html;charset=utf-8"); // $a = 1; // echo $GLOBALS; // echo $_SERVER; // echo $_ENV; // var_dump($_REQUEST); var_dump($ 阅读全文
posted @ 2021-01-09 11:22 孙旋 阅读(37) 评论(0) 推荐(0) 编辑
摘要: <?php header("content-type:text/html;charset=utf-8"); //数组 定义 $arr = array('a','b'); $arr = ['a','b']; //数值数组 $arr = [1,2]; //关联数组 $arr = [ 'name'=>'张 阅读全文
posted @ 2021-01-08 11:58 孙旋 阅读(37) 评论(0) 推荐(0) 编辑
摘要: <?php header("content-type:text/html;charset=utf-8"); //变量的作用域 //php中,全局变量无法在定义的函数中直接使用 $i = 1; function con($i){ // echo $i; //错误,$iunderfind //如果想使用 阅读全文
posted @ 2021-01-08 10:53 孙旋 阅读(40) 评论(0) 推荐(0) 编辑
摘要: <?php header("content-type:text/html;charset=utf-8"); //设置编码 /* 整数类型: 1.整数是一个没有小数的数字。 2.整数可以是正数或负数 3.整型可以用三种格式来指定:十进制, 十六进制( 以 0x 为前缀)或八进制(前缀为 0) 进制之间 阅读全文
posted @ 2021-01-06 09:34 孙旋 阅读(59) 评论(0) 推荐(0) 编辑
摘要: <?php //使用session //设置session // session_start(); // $_SESSION['a'] = 'admin'; //设置cookie,如果有cookie,说明用户已经登陆或者cookie在过期时间内,可以进行页面跳转,直接跳转到首页 if($_COOKI 阅读全文
posted @ 2021-01-05 14:28 孙旋 阅读(60) 评论(0) 推荐(0) 编辑
摘要: //模拟登录 // $admin = 0; // if($admin != 10){ // //页面跳转 // $this->success('登录失败','login/index'); // $this->error('登录失败'); // $this->redirect('login/index 阅读全文
posted @ 2021-01-05 14:25 孙旋 阅读(154) 评论(0) 推荐(0) 编辑