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