Skip to content

Instantly share code, notes, and snippets.

Created January 3, 2013 19:31
Show Gist options
  • Save anonymous/4446297 to your computer and use it in GitHub Desktop.
Save anonymous/4446297 to your computer and use it in GitHub Desktop.
<?php
define('…CONST', 'CONST');
const … = "CONST CONST";
class …
{
public static function …staticMethod()
{
return 'STATIC';
}
public function …method()
{
return 'METHOD';
}
}
function …()
{
return 'FUNCTION';
}
var_dump(…);
var_dump(…::…staticMethod());
var_dump(…CONST);
$o = new …;
var_dump($o->…method());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment