Mega Code Archive

 
Categories / Php / Development
 

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