当前位置:Gxlcms > PHP教程 > office2010激活方法PHP中其实也可以用方法链

office2010激活方法PHP中其实也可以用方法链

时间:2021-07-01 10:21:17 帮助过:9人阅读

简单示意一下:

代码如下:


class test {
private $_name = '';
public function setName($name)
{
$this->_name = $name;
return $this;
}
public function getName()
{
echo $this->_name . "\n";
return $this;
}
}
$link = new test();
// 方法链
$link->setName('name1')->getName()->setName('name2')->getName()->setName('name3')->getName();


结果如下:

代码如下:


name1
name2
name3

以上就介绍了office 2010 激活方法 PHP中其实也可以用方法链,包括了office 2010 激活方法方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

人气教程排行