Jump to content
xisto Community
Sign in to follow this  
iGuest

class

Recommended Posts

You mean a destructor? Those are new to PHP5. If you're using PHP5, you can do the following:

class a {	function __destruct() {  echo "Destroying " . $this->name . "n";	}}
This will be called whenever the object goes out of scope or the script ends.

If you don't have PHP5, then you can make a function which will echo the words you want, but you will have to call it manually.
class a {	function destroy() {  echo"Destroying ".$this->name."n";	}}$obj = new a();a->destroy();

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this  

×
×
  • Create New...

Important Information

Terms of Use | Privacy Policy | Guidelines | We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.