Multiple constructor for php
public function __construct() {}
public function __construct0() { echo "MultipleConstructor test without argument"; }
public function __construct1($arg) { echo "MultipleConstructor test with one argument. 1=".$arg; }
public function __construct2($arg, $argtwo) { echo "MultipleConstructor test with two argument. 1=".$arg.", 2=".$argtwo; }
public function __construct10($one, $two, $three, $four, $fife, $six, $seven, $eight, $nine, $ten) {}