<?php /** * Conversion de errores PHP a Exceptions */ function exceptionsHandler($code, $string, $file, $line) { throw new ErrorException($string, 0, $code,$file,$line); } set_error_handler('exceptionsHandler', E_ALL); ?>