如何从同一个类中的另一个方法调用静态方法?
$this->staticMethod();
或者
$this::staticMethod();
self::staticMethod();
有关静态关键字的更多信息。