I have a static function in PHP:
public static function func( $foo, $bar ) {
}
where $bar is an integer. I want to implement a similar func but where $bar is a string. In C++ I would use overloading but the PHP documentation shows that overloading doesn't do the same as C++. Is there some other way I can achieve what I want?
One alterative that I thought about is some polymorphism but it seems kind of overkill?:
Make an interface with func defined (with no implementation) and just implement it in two different ways. So:
interface Something {
public static function func( $foo, $bar );
}
class Something1 implements Something {
public static function func( $foo, $bar ) {
// some implementation
}
}
class Something2 implements Something {
public static function func( $foo, $bar ) {
// some other implementation
}
}
Many thanks.

