鏈式編程使用起來非常惬意,本文嘗試在PHP下實現一種鏈式編程的應用
我們知道在new class後調用method,在常規PHP編程下每次調用都要
Php代碼
$instance->method1();
$instance->method1();
$instance->method1();
$instance->method1();
這樣無盡的寫N多,如果中間有錯誤判斷那就成這樣了
Php代碼
if($instance->method1())
if($instance->method2())
$instance->method3();
//or
$instance->method1();
if($instance->hasError()) die(error);
$instance->method2();
if(....) ...;
if($instance->method1())
if($instance->method2())
$instance->method3();
//or
$instance->method1();
if($instance->hasError()) die(error);
$instance->method2();
if(....) ...;
看上去很煩,寫起來更煩,特別是在開發期,那簡直是噩夢。
如果能保證這樣執行
Php代碼
if($instance->m0()->m1()->m2()->hasError()) die(error);
if($instance->m0()->m1()->m2()->hasError()) die(error);
那就安逸了,實現這個,方法其實很簡單就是在這種可以鏈式進行的方法中包含錯誤判斷,無論如何都返回this, 當然類似hasError這樣的方法是不返回this的,這一類方法總是出現在最後,但是在開發期,我們在方法裡面復制粘貼N多的
Php代碼
if($this->hasError())
return $this
//someting..
return $this;
if($this->hasError())
return $this
//someting..
return $this;
這樣也夠煩人的,當然如果定型了,那嵌入這些代碼也無所謂。開發期就煩死人了。
可以利用PHP的魔術方法來實現這個,這裡給出一個基本的結構
Php代碼
class CChain{
private $instance=null;
private $haserror=false;
public function __construct($instance) {
if(!method_exists($instance,getError))
die(Instance does not have a method getError().);
$this->instance=$instance;
}
public function __call($m,$a) {
if($this->haserror)
return $m==getError?$this->haserror:$this;
$this->haserror=&$this->instance->getError()?:false;
if($this->haserror)
return $m==getError?$this->haserror:$this;
$ret=&call_user_func_array(array(&$this->instance, $m),$a);
$this->haserror=&$this->instance->getError()?:false;
if($this->haserror)
return $m==getError?$this->haserror:$this;
if($m==getError) return $this->haserror;
if($ret===null)
return $this;
return $ret;
}
public function __get($n) {
return $this->instance->$n;
}
public function __set($n,$v) {
$this->instance->$n=$v;
}
}
class test {
public $error=false;
public function getError() {
return $this->error;
}
public function setError($v) {
$this->error=$v;
}
public function m0() {
/* someting without return*/
}
public function m1() {
/* someting without return*/
}
public function m2($foo=null) {
if($foo) {
return $this->setError(error .__METHOD__);
}
/* someting without return*/
}
}
$test=new CChain(new test);
print_r( $test->m0()->m1()->m2(1) );
echo($test->error);