Example analysis of continuous php function calls_php skills

WBOY
Release: 2016-05-16 20:09:18
Original
1501 people have browsed it

The example in this article describes the method of continuous calling of php functions. Share it with everyone for your reference. The details are as follows:

<&#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;>

Copy after login

The running results are as follows:

My name is: Xingxing
My age is: 10000

I hope this article will be helpful to everyone’s PHP programming design.

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template