함수의 사용여부 체크 function_exists
페이지 정보

본문
function_exists
(PHP 4, PHP 5, PHP 7)
function_exists — Return TRUE if the given function has been defined
## 설명
bool function_exists ( string $function_name )
## 인수
function_name
The function name, as a string.
## 반환값
Returns TRUE if function_name exists and is a function, FALSE otherwise.
Note:
This function will return FALSE for constructs, such as include_once and echo.
## 예제
if (function_exists('imap_open')) {
echo "IMAP functions are available.
\n";
} else {
echo "IMAP functions are not available.
\n";
}
?>
## 참고 ¶
•method_exists() - 클래스 메쏘드가 존재하는지 확인
•is_callable() - 변수 내용을 함수처럼 호출할 수 있는지 확인
•get_defined_functions() - Returns an array of all defined functions
•class_exists() - 클래스가 정의되었는지 확인
•extension_loaded() - Find out whether an extension is loaded
-----------------------------------------------
출처.. php 메뉴얼
- 이전글php에서 empty 와 isset 25.05.09
- 다음글[HTML5]History API 활용 21.02.09
댓글목록
등록된 댓글이 없습니다.