|
update : 2015.11.03
php.shukuma.com검색:
|
error_clear_last(PHP 7) error_clear_last — Clear the most recent error 설명
void error_clear_last
( void
)
반환값Clears the most recent errors, making it unable to be retrieved with error_get_last(). 예제
Example #1 An error_clear_last() example
<?php위 예제의 출력 예시:
NULL
NULL
array(4) {
["type"]=>
int(8)
["message"]=>
string(21) "Undefined variable: b"
["file"]=>
string(9) "%s"
["line"]=>
int(6)
}
NULL
|