Home >Backend Development >PHP Tutorial >thinkphp如何打印sql语句

thinkphp如何打印sql语句

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-06-23 13:55:261787browse

thinkphp如何打印sql语句?比如 $member = M("member");   $map['id'] = 1;   $result = $member->where($map)->delete();
SQL语句应该是delete * from table member where id = 1; 
怎样输出这个sql判断?我记得有个函数,但忘了是哪个了


回复讨论(解决方案)

getLastSql

echo  M("member")->getLastSql();

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn