Show toolbar

2011年10月31日 星期一

PHP Fluent Interface

標題:Fluent Interface 連串執行 function
PHP (index.php):
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php
class codeboxy {
protected $str;
protected $num = 0;
public function a() {
$this->str .= 'a';
$this->num += 1;
return $this;
}
public function b() {
$this->str .= 'b';
$this->num += 2;
return $this;
}
public function display() {
return $this->str . $this->num;
}
}
$test = new codeboxy();
$test->a()->b()->a()->b(); // "a b a b" . (1 + 2 + 1 + 2)
echo $test->display(); // abab6
?>
結果:
說明:
使用PHP連貫的執行Function並Return回物件。

沒有留言:

張貼留言