Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的简单查询:
$list = Doctrine_Query::create() ->from('liste l') ->where('l.id =?', $id) ->fetchOne();
$id = 123;
我知道我的数据库中没有 $id =123 的条目。当我计算 $list 时,我得到结果 1。我如何通过查询或查询结果知道我的数据库中没有 $id = 123 的条目?
var_dump 给了我错误!
所以我只是做一个快速:
if ($list == FALSE) { ....}