Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- $divisor = 0;
- $dividend = 16;
- // Wrong
- $quotient = $dividend / $divisor;
- echo $quotient . PHP_EOL;
- // Correct
- if( $divisor > 0 ) {
- // Does not execute in this case
- $quotient = $dividend / $divisor;
- echo $quotient . PHP_EOL;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement