上一页 1 ··· 3 4 5 6 7 8 9 10 下一页
摘要: public function search () { // if(request()->isPost()){ //获取输入的类别 $where=[]; $where1=[]; $sousuo=input('sousuo'); // var_dump($sousuo); $where['name'] 阅读全文
posted @ 2020-08-13 09:09 不吃肉的羊 阅读(441) 评论(0) 推荐(0) 编辑
摘要: 数据库查询: //排序和限制每一页显示的条数和从那一条开始 // $iok= DB::table('product')->orderBy('id','desc')->limit(5)->offset(2)->get(); // var_dump($iok); /**把数据渲染到视图文件中,如果视图文 阅读全文
posted @ 2020-07-21 14:50 不吃肉的羊 阅读(178) 评论(0) 推荐(0) 编辑
摘要: 设置路由: use Illuminate\Support\Facades\Route; //设置路由访问控制器只能是get访问 // Route::get('/user','User@user'); // Route::get('/',function(){ // return 'hello wor 阅读全文
posted @ 2020-07-18 16:46 不吃肉的羊 阅读(414) 评论(0) 推荐(0) 编辑
摘要: 详情:https://www.kancloud.cn/manual/thinkphp5/135187 阅读全文
posted @ 2020-07-15 09:20 不吃肉的羊 阅读(489) 评论(0) 推荐(0) 编辑
摘要: namespace app\admin\controller;//命名空间是和这个文件所在位置相对应 use think\Controller; use think\db\Query; class index extends Controller//继承tp框架的方法。控制器名称是与视图文件view 阅读全文
posted @ 2020-07-11 14:54 不吃肉的羊 阅读(205) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-07-04 09:18 不吃肉的羊 阅读(132) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-07-04 09:11 不吃肉的羊 阅读(210) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-07-04 09:01 不吃肉的羊 阅读(110) 评论(0) 推荐(0) 编辑
摘要: <?php //这是父类 // class father{ // public $i='人';//共有的在哪里都可以访问,不写就默认是这个 // // protected $i = '人';//这个是受保护的只能在自己类和子类中访问 // // private $i = '人';//这个是私有的只能 阅读全文
posted @ 2020-06-17 16:58 不吃肉的羊 阅读(209) 评论(0) 推荐(0) 编辑
摘要: <?php // namespace a { // const a='定义常量'; //这是在命名空间里定义常量 // function a(){ // echo 'a<br>'; // } // } // namespace b { // function b(){ // // echo 'b'; 阅读全文
posted @ 2020-06-16 17:00 不吃肉的羊 阅读(398) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 下一页