PHP Fatal error: Uncaught Error: Call to undefined function
주로 사용하고자 하는 함수가 선언되지 않았을 때 나타나는 오류.
function을 사용 할 때 function명을 올바로 썼는지 혹은 function이 선언되어 있는지 확인해야 한다.
예시)
// Bad;
@include_once('/data/funcstions.php');
$test = call_the_function();
// Good!
@include_once('/data/funcstions.php');
if(function_exists('call_the_function')){
$test = call_the_function();
}
'Language > PHP' 카테고리의 다른 글
[Deprecated] ereg_replace , eregi_replace() 대체 (0) | 2020.03.10 |
---|---|
AH02429: Response header name 'Last-Modified ' 에러 (0) | 2020.03.10 |
PHP Fatal error: Cannot redeclare function() (previously declared in ~) (0) | 2020.03.10 |
PHP Warning: sizeof(): Parameter must be an array or an object that implements Countable in (0) | 2020.03.10 |
[Deprecated] session_is_registered() 대체 (0) | 2020.03.10 |