Skip to content

Instantly share code, notes, and snippets.

@unr
Last active August 29, 2015 14:02
Show Gist options
  • Save unr/fbaf90a6d7bfe7056cfe to your computer and use it in GitHub Desktop.
Save unr/fbaf90a6d7bfe7056cfe to your computer and use it in GitHub Desktop.
An example of static classes in php.
<?php
// Declare our class, and its init function
class Example {
public static function init() {
echo "Hello World";
}
}
// This will echo hello world, from the class
Example::init();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment