drupal 7 の count 関数に問題があります。
コードは次のとおりです。
$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()
どんな助けでも大歓迎です!