Home > Article > Backend Development > Example analysis of continuous php function calls_php skills
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:
<?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"); ?>
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.