Define class helper class to check the method existance : Reflection Existance : Class PHP Source Code


PHP Source Code » Class » Reflection Existance »

 

Define class helper class to check the method existance



<?php
class {
    function getA( ) {
        return array"A""B" );
    }
}

class Helper {
    private $classA;

    function __constructA $classA ) {
        $this->classA = $classA;
    }

    function __call$method, $args ) {
        if method_exists$this->classA, $method ) ) {
            return $this->classA->$method( );
        }
    }
}

$tool= new Helpernew A() );
print_r$tool->getA() );
?>


           
       



HTML code for linking to this page:

Follow Navioo On Twitter

PHP Source Code

 Navioo Class
» Reflection Existance