12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <?php
- class PHPExcel_Calculation_ExceptionHandler {
-
- public function __construct() {
- set_error_handler(array('PHPExcel_Calculation_Exception', 'errorHandlerCallback'), E_ALL);
- }
-
- public function __destruct() {
- restore_error_handler();
- }
- }
|