thinkphp3 获取最近的sql语句

版权声明:本文为博主原创文章,未经博主允许不得(商用)转载。 https://blog.csdn.net/tang1jun/article/details/80937093

thinkphp 3 获取最近的sql语句

/**
 * @title  获取最近的sql语句
 * @author lyj [author] [2018-07-06]
 * @param  integer $type [类型 0 打印语句 不为0 返回语句]
 * @return [type]        [description]
 */
function getsqlstr($type = 0) 
{
    if($type === 0){
        echo '您要的SQL: <br> <h5 style="color:#EE1616;">' . M()->getLastSql() . '<h5>';
        echo '<br>';
    }else{
        $res = M()->getLastSql();
        return $res;
    }
}

猜你喜欢

转载自blog.csdn.net/tang1jun/article/details/80937093
今日推荐