<?php function diaUtil($dia){ switch ($dia){ case 2: echo "Segunda-feira"; break; case 3: echo "Terça-feira"; break; case 4: echo "Quarta-feira"; break; case 5: echo "Quinta-feira"; break; case 6: echo "Sexta-Feira"; break; default: throw new DomainException("Não é um dia útil válido"); }} diaUtil(3);diaUtil(10);
Standard input is empty
Terça-feira
PHP Fatal error: Uncaught exception 'DomainException' with message 'Não é um dia útil válido' in /home/GBJJJw/prog.php:11 Stack trace: #0 /home/GBJJJw/prog.php(16): diaUtil(10) #1 {main} thrown in /home/GBJJJw/prog.php on line 11
The brand new service which powers Ideone!
Widget for compiling and running the source code in a web browser!