Title / Description
Code<?php class MyDestructableClass { function __construct() { print "In constructor\n"; $this->name = "MyDestructableClass"; } function __destruct() { print "Destroying " . $this->name . "\n"; } } $obj = new MyDestructableClass(); ?>
Author
Highlight as C C++ CSS Delphi Groovy (beta) HTML JSON Java JavaScript Nitro-XHTML PHP Plain text Python RHTML Ruby SQL XML YAML diff code