0

我有以下方法,但是当我运行应用程序时,我收到以下错误:
“解析错误:语法错误,意外 T_STRING,期待 T_VARIABLE”

 public static getExcludedEmailCount($email){
    db_set_active(TEST_DB);
    $sql = "select COUNT(*) from person WHERE SUBSTRING_INDEX('%s','@',1) IN (SELECT email_role FROM email_role_exclusion)";

    $result = db_query($sql, $email);

    db_set_active();
    return $result;
}


有谁知道是什么原因,我对 Drupal 和 PHP 很陌生。提前非常感谢。

4

1 回答 1

2

你忘了把功能。像这样声明

public static function getExcludedEmailCount($email)

getExcludedEmailCount 内部的方法也属于同一个类,然后使用 $this 关键字,如果它们属于另一个类,则创建该类的对象,然后访问这些方法。

于 2013-09-28T04:28:37.543 回答