Heim >Backend-Entwicklung >PHP-Tutorial > php幻术方法call详解

php幻术方法call详解

WBOY
WBOYOriginal
2016-06-13 13:19:05889Durchsuche

php魔术方法call详解
作者:zccst

class Caller
{
    private $x = array(1, 2, 3);

    public function __call($m, $a)
    {
        print "Method $m called:n";
        var_dump($a);
        return $this->x;
    }
}

$foo = new Caller();
$a = $foo->test(1, "2", 3.4, true);
var_dump($a);



输出结果:
Method test called:n

array
  0 => int 1
  1 => string '2' (length=1)
  2 => float 3.4
  3 => boolean true

array
  0 => int 1
  1 => int 2
  2 => int 3


批注:
__call()  是PHP里的一个魔术方法,当你调用一个类里的方法,而该方法又不存在里,就会自动调用__call() ;
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn