destuctor in action
|
<?php class Person { protected $name; private $age; private $id;
function __construct( $name, $age ) { $this->name = $name; $this->age = $age; }
function setId( $id ) { $this->id = $id; } function __destruct() { if ( ! empty( $this->id ) ) { print "saving personn"; } } }
$person = new Person( "Joe", 31 ); $person->setId( 111 ); unset( $person );
?>
|
|
|
|
|
HTML code for linking to this page:
Related in same category :
-
|