下面就用一段代碼示例來演示一下PHP高級對象構建中的使用多個構造函數進行對象構建的原理。
復制代碼 代碼如下:
<?php
class classUtil {//這是一個參數處理的類
public static function typeof($var){
if (is_object($var)) return get_class($var);//如果是對象,獲取類名
if (is_array($var)) return "array";//如果是數組,返回"array"
if (is_numeric($var)) return "numeric";//如果是數字,返回"numeric"
return "string";//字符串返回 "string"
}
public static function typelist($args){
return array_map(array("self","typeof"),$args);//數組循環通過調用self::typeof處理$args中的每個元素
}
public static function callMethodForArgs($object,$args,$name="construct"){
$method=$name."_".implode("_",self::typelist($args));//implode 是把數組元素用"_"連接成一個字符串
if (!is_callable(array($object,$method))){//is_callable()函數測試$object::$method是不是可調用的結構
echo sprintf("Class %s has no methd '$name' that takes".
"arguments (%s)",get_class($object),implode(",",self::typelist($args)));
call_user_func_array(array($object,$method),$args);//call_user_func_array函數調用$object::$method($args)
}
}
}
class dateAndTime {
private $timetamp;
public function __construct(){//自身的構造函數
$args=func_get_args();//獲取參數
classUtil::callMethodForArgs($this,$args);//調用參數處理類的方法
}
public function construct_(){//參數為空的時候
$this->timetamp=time();
}
public function construct_dateAndTime($datetime){//為類自身的時候
$this->timetamp=$datetime->getTimetamp();
}
public function construct_number($timestamp){//為數字的時候
$this->timetamp=$timestamp;
}
public function construct_string($string){//為時間型字符串時候
$this->timetamp=strtotime($string);
}
public function getTimetamp(){//獲取時間戳的方法
return $this->timetamp;
}
}
?>
以上方法,就說明了多個構造函數的使用方法,其實,很簡單,主要是對參數進行了處理,不管是參數是字符,還是數字,還是類,都先進了不同的處理,這樣就加大了代碼的靈活性。