Last active
August 3, 2016 10:12
-
-
Save leonkorteweg/786053579eb5b925430ac6ea6a9ef6a7 to your computer and use it in GitHub Desktop.
Static methods in PHP
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class Test { | |
public static function formatMessage($message){ | |
return $message . '!!!'; | |
} | |
public static function displayMessage($message) { | |
return self::formatMessage($message); | |
} | |
} | |
echo Test::displayMessage('hoi'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment