Skip to content

Instantly share code, notes, and snippets.

@ysasaki
Created January 17, 2014 01:38
Show Gist options
  • Save ysasaki/8467015 to your computer and use it in GitHub Desktop.
Save ysasaki/8467015 to your computer and use it in GitHub Desktop.
<?php
if (sizeof($argv)>1) {
class Foo
{
public static function hello()
{
echo "ue!!!\n";
}
}
} else {
class Foo
{
public static function hello()
{
echo "shita!!!\n";
}
}
}
Foo::hello();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment