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

Here, we are going to demonstrate the Divide By Zero Exception using exception handling in PHP.
Submitted by Nidhi, on November 22, 2020 [Last updated : March 13, 2023]

Handing Divide By Zero Exception

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

PHP code to handle Divide By Zero Exception

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.

PHP Exception Handling Programs »



ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT


Comments and Discussions!




Languages: » C » C++ » C++ STL » Java » Data Structure » C#.Net » Android » Kotlin » SQL
Web Technologies: » PHP » Python » JavaScript » CSS » Ajax » Node.js » Web programming/HTML
Solved programs: » C » C++ » DS » Java » C#
Aptitude que. & ans.: » C » C++ » Java » DBMS
Interview que. & ans.: » C » Embedded C » Java » SEO » HR
CS Subjects: » CS Basics » O.S. » Networks » DBMS » Embedded Systems » Cloud Computing
» Machine learning » CS Organizations » Linux » DOS
More: » Articles » Puzzles » News/Updates

© https://www.includehelp.com some rights reserved.