Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Static Method

Static methods are methods defined with the static keyword. They have to be called with the name of the class, rather than an instantiated object.

<?php

    class X {
        static function foo() {
            echo __METHOD__;
        }
    }
    
    //displays x::foo
    x::foo();

?>

Documentation

See Also