var_dump a class : Reflection Class Definition « Class « PHP






var_dump a class

<?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;
    }
}

var_dump( new Person("A",10) );

?>


           
       








Related examples in the same category

1.get_declared_classes: get all defined class
2.Get class name
3.Get class information: file name, start line and end line
4.Class information: is User Defined, is Internal and is Interface
5.Class information: is Abstract, is Final and is Instantiable
6.Use Reflection class to export class
7.get_class_vars: get class variables