Hello,
Reading a java book on OOP, I wanted to do this in php:
class foo
{
public function bar($string){...}
public function bar($string, $int, $array) {...}
}
It should provide different "signatures" and allow method overloading...
Why not in php?
Is that not built in?
- Ben