<?php
//返回$this,实现连续调用
class xin {
function name($namec) {
echo "我的名字是:$namec <br/>";
return $this;
}
function age($agec) {
echo "我的年龄是:$agec <br/>";
return $this;
}
}
$xind = new xin();
$xind->name("星星")->age("10000");
?>
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn