Skip to content

Instantly share code, notes, and snippets.

Created June 24, 2013 08:28
Show Gist options
  • Save anonymous/5848565 to your computer and use it in GitHub Desktop.
Save anonymous/5848565 to your computer and use it in GitHub Desktop.
<?php
class Box {
public static function getSize() {
return 10;
}
}
//to call static method
$box = new Box;
echo $box::getSize();
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment