Home  >  Article  >  php教程  >  函数连续调用

函数连续调用

PHP中文网
PHP中文网Original
2016-05-26 08:18:441248browse

php代码

<?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
Previous article:PHP 事件驱动程序Next article:ios json