PHP 8.6.0 Beta 3 is available for testing

Yaf_Request_Abstract::getException

(Yaf >=1.0.0)

Yaf_Request_Abstract::getExceptionRetrieve the exception

Descrizione

public function Yaf_Request_Abstract::getException(): ?Exception

Retrieve the exception caught during dispatching.

Elenco dei parametri

Questa funzione non contiene parametri.

Valori restituiti

The Exception caught during dispatching, or null if none.

Esempi

Example #1 Yaf_Request_Abstract::getException() example

<?php
// In the bootstrap, enable exception catching so that any exception
// thrown during dispatching is forwarded to the error action
Yaf_Dispatcher::getInstance()->catchException(true);

class ErrorController extends Yaf_Controller_Abstract
{
    public function errorAction($exception)
    {
        var_dump($this->getRequest()->getException() === $exception);
    }
}
?>

Il precedente esempio visualizzerà qualcosa simile a:

bool(true)

Vedere anche:

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top