함수의 사용여부 체크 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.
## 예제
<?php
if (function_exists('imap_open')) {
echo "IMAP functions are available.<br />\n";
} else {
echo "IMAP functions are not available.<br />\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 메뉴얼
http://php.net/manual/kr/function.function-exists.php
(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.
## 예제
<?php
if (function_exists('imap_open')) {
echo "IMAP functions are available.<br />\n";
} else {
echo "IMAP functions are not available.<br />\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 메뉴얼
http://php.net/manual/kr/function.function-exists.php
- 이전글입력값에서 쌍따옴표 처리 21.03.10
- 다음글유입로그 저장 또는 검색엔진 키워드 찾기 21.02.09
댓글목록
등록된 댓글이 없습니다.