大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
var test = function (){
this.str = '',
this.a = function (){
this.str += "a"
return this
},
this.b = function(){
this.str += "b"
return this
}
this.out = function(){
console.log(this.str)
}
}
var entity = new test()
entity.a().b().out()
ab
out .= $a;
return $this;
}
public function b($b){
$this->out .= $b;
return $this;
}
public function say(){
echo $this->out.PHP_EOL;
}
public function get(){
return $this->out;
}
}
$single = new single();
$out = $single->a('a')->b('b')->say();
$get = $single->a('a')->b('b')->get();
echo $get;
ab
abab