php 对象中连贯执行方法
Posted 鱼塘总裁
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 对象中连贯执行方法相关的知识,希望对你有一定的参考价值。
连贯操作的重点是返回当前对象,以便可以继续执行
class Ceshi{ public $str = ‘‘; public function f1($a){ $this->str .= $a; //连贯操作的重点是返回当前对象,以便可以继续执行 return $this; } public function f2($b){ $this->str .= $b; return $this; } public function get(){ return $this->str; } } $MyClass = new Ceshi(); echo $MyClass->f1(1)->f2(2)->get();
以上是关于php 对象中连贯执行方法的主要内容,如果未能解决你的问题,请参考以下文章