tp6中fetchSql的作用是啥呀?

2022-05-18 13:17:25 浏览数 (1)

fetchSql:作用:输出sql语句。优点:便于调试.

代码语言:javascript复制
<?php
namespace appindexcontroller;

use appBaseController;
use thinkfacadeDb;
class Index extends BaseController
{
    public function hello()
    {
    	$res=Db::table('user')->field('id,title')->where('id','>',19)->fetchSql(true)->select();
    	halt($res);//fetchSql默认是flase就是说跟没写一样的,true就是输出一条查询语句
    }
}

0 人点赞