Skip to content

Instantly share code, notes, and snippets.

@Anahkiasen
Created January 17, 2013 15:11
Show Gist options
  • Save Anahkiasen/4556599 to your computer and use it in GitHub Desktop.
Save Anahkiasen/4556599 to your computer and use it in GitHub Desktop.
<?php
class Foobar
{
public static function foo()
{
exit('foo');
}
}
$test = new Foobar();
$test->foo(); // Displays 'foo'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment