Skip to content

Instantly share code, notes, and snippets.

@idmontie
Created February 28, 2015 04:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save idmontie/570adef25e2439685f46 to your computer and use it in GitHub Desktop.
Save idmontie/570adef25e2439685f46 to your computer and use it in GitHub Desktop.
php-namespace-example
<?php
namespace My_Namespace;
class My_Class {
public static function my_method () {
return 'wow';
}
}
?>
<?php
// In a seperate file
include 'my-class.php';
echo \My_Namespace\My_Class::my_method();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment