Solution Review: Classes and Objects
Explore the essentials of PHP classes and objects by reviewing class creation, adding public properties, and implementing methods. Learn to instantiate objects, assign property values, and invoke methods through practical examples.
We'll cover the following...
We'll cover the following...
Solution: Task 1
Explanation
- Line 2: We write the
Userclass. - Line 4: We add the public property
$firstNameto theUserclass. - Line 5: We add the public property
$lastNameto theUserclass.
Solution: Task 2
Explanation
-
Line 2: We write the
Userclass with ...