View Single Post
  #22 (permalink)  
Old 04-23-2008, 07:27 AM
jegan jegan is offline
D-Web Sr.Programmer
 
Join Date: Jul 2007
Posts: 161
jegan is on a distinguished road
Default Re: PHP Classes For Beginners

Using destructors
PHP Code:
class Box
{
    var  
width;
    var 
height;
    
        function ~
box()
        {
           
//Code for release the memory  
        
}
}

Box1=new box ();    //it’s call the constructor function 
Delete box1;           //it’s call destructor function 
__________________
Thanks & Regards,
Jegan CBK
"We will either find a way, or make one!”
Reply With Quote