摘要:
fetchSql用于直接返回SQL而不是执行查询,适用于任何的CURD操作方法 $result = Db::table('think_user')->fetchSql(true)->find(1);输出result结果为: SELECT * FROM think_user where id = 1 阅读全文
摘要:
<?php namespace app\index\controller; use think\Db; class Pages extends \think\Controller { public function pages() { $db = db('user'); #每页显示10条数据,一共显 阅读全文