Switch to full style
:read: Start PHP with us. Includes topics to help you in php
Post a reply

php extends in action

Sun Oct 26, 2008 11:50 pm

Code:
<?php
class Checkout {
    
final function totalize() {
        
// calculate bill
    
}
}

class
IllegalCheckout extends Checkout {
    
final function totalize() {
        
// change bill calculation
    
}
}

$checkout = new Checkout();

?>





Post a reply
  Related Posts  to : php extends in action
 php SAX parser in action     -  
 is_numeric in action     -  
 JButtons implementing an Action     -  
 Button action listener should implement abstract method     -  
 Two Listeners- Mutli- Action Listeners on Text Area     -  

Topic Tags

PHP OOP