previousUsing PEAR_Exception for advanced error handling in PHP 5+ (Previous) (Next) Introducción al uso de PEAR_ErrorStack para manejo avanzado de erroresnext

View this page in Last updated: Sun, 18 Oct 2009
English | Brazilian Portuguese | Chinese | Dutch | French | German | Hungarian | Japanese | Polish | Russian | Spanish | Turkish

Gestión inteligente de errores con PEAR_ErrorStack

Table of Contents

PEAR_ErrorStack es una implementación experimental de gestión y lanzamiento de error para PEAR que está diseñada para reemplazar a PEAR_Error cuando alcance estabilidad. PEAR_ErrorStack es a la vez compatible hacia atrás con PEAR_Error y hacia adelante con las clases de excepciones de PHP 5. Hay otras muchas características, descritas en la Introducción.

Empleo:

1      // global error stack
2      $global_stack = &PEAR_ErrorStack::
singleton
('MyPackage');
3      // local error stack
4      $local_stack = new
PEAR_ErrorStack
('MyPackage');

previousUsing PEAR_Exception for advanced error handling in PHP 5+ (Previous) (Next) Introducción al uso de PEAR_ErrorStack para manejo avanzado de erroresnext

Download Documentation Last updated: Sun, 18 Oct 2009
Do you think that something on this page is wrong? Please file a bug report or add a note.
User Notes:
There are no user contributed notes for this page.