tags:

views:

107

answers:

1

how do i call a static method from another method inside the same class?

$this->staticMethod();

or

$this::staticMethod();
+7  A: 
self::staticMethod();
jeroen