where($map"/> where($map">

Home  >  Article  >  Backend Development  >  thinkphp怎么打印sql语句

thinkphp怎么打印sql语句

WBOY
WBOYOriginal
2016-06-13 11:59:401566browse

thinkphp如何打印sql语句
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