Heads up! To view this whole video, sign in with your Courses account or enroll in your free 7-day trial. Sign In Enroll
Well done!
You have completed Extending Object-Oriented PHP!
You have completed Extending Object-Oriented PHP!
Preview
In this video we will extend the child class from ListingPremium. This new grandchild will inherit all the attributes and abilities of ListingPremium AND ListingBasic.
$object = new ListingFeatured();
//parent
echo is_a($object, 'ListingPremium'); //returns true
//grandparent
echo is_a($object, 'ListingBasic'); //returns true
//sibling of parent
echo is_a($object, 'ListingInactive'); //returns false
Related Discussions
Have questions about this video? Start a discussion with the community and Treehouse staff.
Sign upRelated Discussions
Have questions about this video? Start a discussion with the community and Treehouse staff.
Sign up
So let's copy the code from
the ListingPremium and modify that.
0:00
We don't need to change the allowed tags.
0:12
We'll let the ListingPremium handle that,
so let's remove that line.
0:14
Now we can change description to
code of conduct, or coc for short.
0:22
You need to sign up for Treehouse in order to download course files.
Sign upYou need to sign up for Treehouse in order to set up Workspace
Sign up