comment_num_replies($pid)
drupal/modules/comment/comment.module, line 1203
Get replies count for a comment.
$pid The comment id.
The replies count.
function comment_num_replies($pid) {
static $cache;
if (!isset($cache[$pid])) {
$cache[$pid] = db_query('SELECT COUNT(cid) FROM {comment} WHERE pid = :pid AND status = :status', array(
':pid' => $pid,
':status' => COMMENT_PUBLISHED))
->fetchField();
}
return $cache[$pid];
}