1. Go to this page and download the library: Download daveross/phpoverloading library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?phprequire_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
classExample{
use \DaveRoss\PHPOverloading\OverloadedMethods;
public $string, $integer;
publicfunction__construct_string($val){
$this->string = $val;
}
publicfunction__construct_integer($val){
$this->integer = $val;
}
}
$strExample = new Example("hello world");
$intExample = new Example(5);
classExample{
use \DaveRoss\PHPOverloading\OverloadedMethods;
public $string, $integer;
publicfunctionexample_string($val){
echo'the string is ' . $val;
}
publicfunctionexample_integer($val){
echo'the integer is ' . $val;
}
}
$x = new Example();
$x->example("hello world"); // echoes "the string is hello world"
$x->example(5); // echoes "the integer is 5"
example_array
__construct_default
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.