print_r a class : print_r « Development « PHP






print_r 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 __clone() {
        $this->id = 0;
    }
}

$person = new Person( "Joe", 44 );
$person->setId( 111 );
$person2 = clone $person;
print( $person );
print_r( $person );
print( $person2 );
print_r( $person2 );

?>


           
       








Related examples in the same category

1.print_r: output associate array
2.print_r for array