ORMExecuteQuery()似乎返回以下数组

example = ormExecuteQuery("select count(commentID) as n from pComment c");

output uing cfdump for example would be...
array
[1][x]


其中x是计数。

我怎样才能得到n作为数字而不返回数组对象?我只想getn()

最佳答案

试试这个:

example = ormExecuteQuery("select count(commentID) as n from pComment c", true);


第二个参数称为unique,尽管名称令人困惑,但它恰好满足了您的需要:使函数返回单个值。

08-06 22:49