我对 drupal 7 中的计数功能有疑问。
代码是:
$sql = "select count(Status) from TB_Aanmeldingen where (Status= 'Ja' or Status='Ja, met kleine') and ID_Wedstrijd = :match";
$args = array(':match' => $match);
$row = db_query($sql, $args)->fetchObject();
$aantal = $row->count(Status);
错误信息:
Call to undefined method stdClass::count()
很感谢任何形式的帮助!