throws php

Solutions on MaxInterview for throws php by the best coders in the world

showing results for - "throws php"
Luka
24 Feb 2016
1
2<?php
3function inverso($x{
4    if (!$x) {
5        throw new Exception('División por cero.');
6    }
7    return 1/$x;
8}
9
10try {
11    echo inverso(5) . "\n";
12    echo inverso(0) . "\n";
13catch (Exception $e) {
14    echo 'Excepción capturada: ',  $e->getMessage(), "\n";
15}
16
17// Continuar la ejecución
18echo 'Hola Mundo\n';
19?>
20
21