首页 > 代码库 > thinkphp-fetchSql

thinkphp-fetchSql

说明

    用于直接返回SQL而不是执行查询,适用于任何的CURD操作方法

示例

$result = Db::table(‘think_user‘)->fetchSql(true)->find(1);
echo $result;

输出

SELECT * FROM think_user where id = 1


本文出自 “素颜” 博客,请务必保留此出处http://suyanzhu.blog.51cto.com/8050189/1896500

thinkphp-fetchSql