依崇稀

导航

 

2020年5月8日

摘要: page // 查询第一页数据 Db::table('think_article')->limit('0,10')->select(); // 查询第二页数据 Db::table('think_article')->limit('10,10')->select(); group Db::table( 阅读全文
posted @ 2020-05-08 09:12 依崇稀 阅读(131) 评论(0) 推荐(0) 编辑
 
摘要: Db::table('think_user') ->where('id','>',1) ->where('name','thinkphp') ->select(); Db::field('user.name,role.title') ->table('think_user user,think_ro 阅读全文
posted @ 2020-05-08 09:03 依崇稀 阅读(125) 评论(0) 推荐(0) 编辑
 
摘要: 获取用户数: Db::table('think_user')->count(); // 助手函数 db('user')->count(); 或者根据字段统计: Db::table('think_user')->count('id'); // 助手函数 db('user')->count('id'); 阅读全文
posted @ 2020-05-08 08:53 依崇稀 阅读(158) 评论(0) 推荐(0) 编辑
 
摘要: 支持请求类型伪装,可以在POST表单里面提交_method变量,传入需要伪装的请求类型,例如: <form method="post" action=""> <input type="text" name="name" value="Hello"> <input type="hidden" name 阅读全文
posted @ 2020-05-08 08:51 依崇稀 阅读(414) 评论(0) 推荐(0) 编辑
 
摘要: namespace app\index\controller\one; use think\Controller; class Blog extends Controller { public function index() { return $this->fetch(); } public fu 阅读全文
posted @ 2020-05-08 08:50 依崇稀 阅读(140) 评论(0) 推荐(0) 编辑
 
摘要: <?php namespace app\index\controller; use think\Request; class Error { public function index(Request $request) { //根据当前控制器名来判断要执行那个城市的操作 $cityName = $ 阅读全文
posted @ 2020-05-08 08:47 依崇稀 阅读(122) 评论(0) 推荐(0) 编辑
 
摘要: <?php namespace app\index\controller; class City { public function _empty($name) { //把所有城市的操作解析到city方法 return $this->showCity($name); } //注意 showCity方 阅读全文
posted @ 2020-05-08 08:45 依崇稀 阅读(99) 评论(0) 推荐(0) 编辑
 
摘要: namespace app\index\controller; use think\Controller; use app\index\model\User; class Index extends Controller { public function index() { $User = new 阅读全文
posted @ 2020-05-08 08:42 依崇稀 阅读(263) 评论(0) 推荐(0) 编辑
 
摘要: namespace app\index\controller; use think\Controller; class Index extends Controller { public function _initialize() { echo 'init<br/>'; } public func 阅读全文
posted @ 2020-05-08 08:41 依崇稀 阅读(347) 评论(0) 推荐(0) 编辑
 

2020年5月7日

摘要: 查找并更新 在取出数据后,更改字段内容后更新数据。 $user = User::get(1); $user->name = 'thinkphp'; $user->email = 'thinkphp@qq.com'; $user->save(); 直接更新数据 也可以直接带更新条件来更新数据 $use 阅读全文
posted @ 2020-05-07 16:49 依崇稀 阅读(164) 评论(0) 推荐(0) 编辑