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......
more