From PHP 5, you can also write PHP code in an object-oriented style.
A class is a template for objects, and an object is an instance of a class.
When the individual objects are created, they inherit all the properties and behaviors from the class, but each object will have different values for the properties.
Edit the code below and click Run to see the result live.