php 建構子支援不同個數字參數方法
#原理:在construct中使用 func_num_args 取得參數個數,然後依照參數個數執行不同的呼叫。參數值使用func_get_arg() 方法獲得。
demo:
<?php class demo{ private $_args; public function construct(){ $args_num = func_num_args(); // 获取参数个数 // 判断参数个数与类型 if($args_num==2){ $this->_args = array( 'id' => func_get_arg(0), 'dname' => func_get_arg(1) ); }elseif($args_num==1 && is_array(func_get_arg(0))){ $this->_args = array( 'device'=>func_get_arg(0) ); }else{ exit('func param not match'); } } public function show(){ echo '<pre class="brush:php;toolbar:false">'; print_r($this->_args); echo ''; } } // demo1 $id = 1; $dname = 'fdipzone'; $obj = new demo($id, $dname); $obj->show(); // demo2 $device = array('iOS','Android'); $obj = new demo($device); $obj->show(); ?>
demo執行後輸出:
Array ( [id] => 1 [dname] => fdipzone ) Array ( [device] => Array ( [0] => iOS [1] => Android ) )
以上是php中建構函式支援不同個數參數的方法分享的詳細內容。更多資訊請關注PHP中文網其他相關文章!