Q:

PHP program to create a class to add two distances

belongs to collection: PHP Classes & Objects Programs

0

Here, we will create a Distance class that contains feet and inches and then we add two distances using Distance class.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program/Source Code:

The source code to add two distances is given below. The given program is compiled and executed successfully.

<?php
//PHP program to add two distances.
class Distance
{
    // Properties
    private $feet;
    private $inch;

    function SetDist($f, $i)
    {
        $this->feet = $f;
        $this->inch = $i;
    }

    function PrintDist()
    {
        print ("Feet  : " . $this->feet . '<br>');
        print ("Inchs : " . $this->inch . '<br><br>');
    }

    function AddDist(Distance $d2)
    {
        $temp = new Distance();

        $temp->feet = $this->feet + $d2->feet;
        $temp->inch = $this->inch + $d2->inch;

        if ($temp->inch >= 12)
        {
            $temp->feet++;
            $temp->inch -= 12;
        }
        return $temp;
    }
}

$d1 = new Distance();
$d1->SetDist(10, 2);
print ("Distance1 : " . '<br>');
$d1->PrintDist();

$d2 = new Distance();
$d2->SetDist(10, 3);
print ("Distance2 : " . '<br>');
$d2->PrintDist();

$d3 = $d1->AddDist($d2);
print ("Distance3 : " . '<br>');
$d3->PrintDist();

?>

Output:

Distance1 :
Feet : 10
Inchs : 2

Distance2 :
Feet : 10
Inchs : 3

Distance3 :
Feet : 20
Inchs : 5

Explanation:

In the above program, we created a class Distance that contains data members feet and inch. The Distance class contains three member functions SetDist()PrintDist(), and AddDist().

The SetDist() function is used to set the values in the data member's feet and inch. The PrintDist() function is used to print the values of data members.

The AddDist() method is used to add the distance of the current object with the specified object and return the object that contains the addition of distance.

Here, we created two objects $d1 and $d2. Then add both distances using AddDist() function and assign the addition of distances in the object $d3.

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

PHP Classes & Objects Programs

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
PHP program to create a class to subtract one dist... >>
<< PHP program to create a class with setter and gett...