is_callable : Reflection Class Methods : Class PHP Source Code


PHP Source Code » Class » Reflection Class Methods »

 

is_callable



<?php
class Person {
    private $name;    
    private $age;    
    private $id;    

    function __construct$name, $age ) {
        $this->name = $name;
        $this->age = $age;
    }

    function setId$id ) {
        $this->id = $id;
    }
    
    function getId(){
        echo "get id method";    
    }
    
    function __clone() {
        $this->id = 0;
    }
}
$p = new Person("A",10);

$method = "getId";     // define a method name

if is_callablearrayget_class($p), $method) ) ) {
    print $p->$method();  // invoke the method
}

?>


           
       



HTML code for linking to this page:

Follow Navioo On Twitter

PHP Source Code

 Navioo Class
» Reflection Class Methods