Home  >  Article  >  Backend Development  >  php函数连续调用实例分析,php函数实例分析_PHP教程

php函数连续调用实例分析,php函数实例分析_PHP教程

WBOY
WBOYOriginal
2016-07-13 09:45:30833browse

php函数连续调用实例分析,php函数实例分析

本文实例讲述了php函数连续调用的方法。分享给大家供大家参考。具体如下:

<&#63;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");
&#63;>

运行结果如下:

我的名字是:星星
我的年龄是:10000

希望本文所述对大家的php程序设计有所帮助。

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/1040814.htmlTechArticlephp函数连续调用实例分析,php函数实例分析 本文实例讲述了php函数连续调用的方法。分享给大家供大家参考。具体如下: php //返回$this,实...
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