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 );
?>
|
|
|
|
|
HTML code for linking to this page:
Related in same category :
-
-
PHP Function Reference -> Users Code Examples / Notes - > print_r:
- print_r
|