함수의 사용여부 체크 function_exists > PHP

본문 바로가기
사이트 내 전체검색

PHP

함수의 사용여부 체크 function_exists

페이지 정보

profile_image
작성자 최고관리자
댓글 0건 조회 4,070회 작성일 21-02-09 11:57

본문

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

댓글목록

등록된 댓글이 없습니다.

회원로그인

회원가입

  • 게시물이 없습니다.

접속자집계

오늘
3,158
어제
4,270
최대
6,642
전체
643,675
contact : webmaster@beautipia.co.kr
Copyright © beautipia.co.kr. All rights reserved.