Exercise: Calculating Area
Explore how to define a PHP class named Triangle with public properties for length and height. Learn to implement a method to calculate the area of a right-angle triangle, reinforcing object-oriented programming concepts in PHP through hands-on coding.
We'll cover the following...
We'll cover the following...
Problem Statement
Let’s start with a very basic example.
Write a class called Triangle having two public variables for length and height and one member function called area which will return the area of the right angle triangle. You can calculate the area of a triangle using
...