CHAPTER 9

image

Class

A class is a template used to create objects. To define one the class keyword is used followed by a name and a code block. The naming convention for classes is mixed case, meaning that each word should be initially capitalized.

class MyRectangle {}

The class body can contain properties and methods. Properties are variables that hold the state of the object, while methods are functions which define what the object can do. Properties are also known as fields or attributes in other languages. In PHP, they must have an explicit access level specified. The public access level is used below, which gives unrestricted access to the property. ...

Get PHP Quick Scripting Reference now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.