<?php class GrandPa { protected $name = 'Mark Henry'; } class Daddy extends GrandPa { function displayGrandPaName() { return $this->name; } } $daddy = new Daddy; echo $daddy->displayGrandPaName(); // Prints 'Mark Henry' $outsiderWantstoKnowGrandpasName = new GrandPa; echo $outsiderWantstoKnowGrandpasName->name; // Results in a Fatal Error Read more of this post
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.