Class method override Demo
|
<?php class myClass {
var $name = "A";
function myClass($n) { $this->name = $n; }
function sayHello() { echo "HELLO! My name is ".$this->name; }
} class childClass extends myClass {
function sayHello() { echo "I will not tell you my name."; } } $object1 = new childClass("a"); $object1 -> sayHello(); ?>
|
|
|
|
|
HTML code for linking to this page:
Related in same category :
-
-
-
|