Creating a Class That Inherits from Another
<?php
class Item {
var $name;
function Item( $name="item", $code=0) {
$this->name = $name;
$this->code = $code;
}
function getName() {
return $this->name;
}
}
class PriceItem extends Item {
}
$item = new PriceItem( "widget", 5442 );
print $item->getName ();
?>
Related examples in the same category