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