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;
}
}
本文介绍了一个ThinkPHP3中用于获取最近执行的SQL语句的实用函数。该函数可以根据参数设置来选择是直接输出SQL语句还是返回语句字符串。这对于调试和维护数据库操作特别有用。
4394

被折叠的 条评论
为什么被折叠?



