Skip to content

Instantly share code, notes, and snippets.

@leonkorteweg
Last active August 3, 2016 10:12
Show Gist options
  • Save leonkorteweg/786053579eb5b925430ac6ea6a9ef6a7 to your computer and use it in GitHub Desktop.
Save leonkorteweg/786053579eb5b925430ac6ea6a9ef6a7 to your computer and use it in GitHub Desktop.
Static methods in PHP
<?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