Reason #184 why PHP sucks
Note: This article was originally published at Planet PHP
on 9 August 2010.
class Blah {
public static function
hello($id) {
printf("Static");
}
public function
hello() {
printf("Instance");
}
}
Blah::hello(5);
$x = new Blah();
$x-hello();
You knows it...


