This may sound a bit newby but I was wondering if you can use methods and properties from a child object
class Father{
function Father(){
// echo the child's $message
}
}
class Son extends Father{
$public $message = 'We\'re in the same family!';
}
If you know what I mean, is there any way to do it?