Q:

PHP program to demonstrate the Divide By Zero Exception using exception handling

0

Here, we will use trycatch, and throw keywords to demonstrate the DivideByZero exception in a PHP program.

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 demonstrate the Divide By Zero Exception using exception handling is given below. The given program is compiled and executed successfully.

<?php
//PHP program to demonstrate the 
//Divide By Zero Exception using exception handling.
try
{
    $A = 10;
    $B = 0;

    if ($B == 0) throw new Exception("Divide by Zero exception occurred");
    $C = $A / $B;
    printf("Value of C: %d<br>", $C);
}
catch(Exception $e)
{
    printf("Exception: %s", $e->getMessage());
}
?>

Output:

Exception: Divide by Zero exception occurred

Explanation:

Here, we created used try and catch block. In the try block, we created two local variables $A$B that are initialized with 10 and 0 respectively.

if($B==0)
    throw new Exception("Divide by Zero exception occurred");

Here we check the condition, if the value of $B is 0 then it will throw an exception using the throw keyword that will be caught by catch block and print specified message on the webpage.

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

total answers (1)

Similar questions


need a help?


find thousands of online teachers now