Mega Code Archive
Destuctor in action
name = $name;
$this->age = $age;
}
function setId( $id ) {
$this->id = $id;
}
function __destruct() {
if ( ! empty( $this->id ) ) {
print "saving person\n";
}
}
}
$person = new Person( "Joe", 31 );
$person->setId( 111 );
unset( $person );
?>