downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

Yaf_Application::__clone> <Yaf_Application::bootstrap
[edit] Last updated: Fri, 30 Nov 2012

view this page in

Yaf_Application::clearLastError

(PECL yaf >=2.1.2)

Yaf_Application::clearLastErrorClear the last error info

Opis

public Yaf_Application Yaf_Application::clearLastError ( void )

Parametry

Ta funkcja nie posiada parametrów.

Zwracane wartości

Przykłady

Przykład #1 Yaf_Application::clearLastError()example

<?php
function error_handler($errno$errstr$errfile$errline) {
   
Yaf_Application::app()->clearLastError();
   
var_dump(Yaf_Application::app()->getLastErrorNo());
}
 
$config = array(                   
 
"application" => array(
   
"directory" => "/tmp/notexists",
     
"dispatcher" => array(
       
"throwException" => 0//trigger error instead of throw exception when error occure
      
),
  ),
);
  
$app = new Yaf_Application($config);
$app->getDispatcher()->setErrorHandler("error_handler"E_RECOVERABLE_ERROR);
$app->run();
?>

Powyższy przykład wyświetli coś podobnego do:

int(0)


add a note add a note User Contributed Notes Yaf_Application::clearLastError - [0 notes]
There are no user contributed notes for this page.

 
show source | credits | sitemap | contact | advertising | mirror sites