摘要:
class User extends Model { // 定义时间戳字段名 protected $createTime = 'create_at'; protected $updateTime = 'update_at'; } 下面是修改字段后的输出代码: $user = new User(); 阅读全文
摘要:
获取器的作用是在获取数据的字段值后自动进行处理,例如,我们需要对状态值进行转换,可以使用: class User extends Model { public function getStatusAttr($value) { $status = [-1=>'删除',0=>'禁用',1=>'正常',2 阅读全文
摘要:
使用where方法 where方法支持时间比较,例如: // 大于某个时间 where('create_time','> time','2016-1-1'); // 小于某个时间 where('create_time','<= time','2016-1-1'); // 时间区间查询 where(' 阅读全文
摘要:
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 阅读全文