程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> php檢測函數是否存在函數 function_exists

php檢測函數是否存在函數 function_exists

編輯:關於PHP編程

php檢測函數是否存在函數 function_exists語法bool function_exists ( string $function_name )檢查的定義的函數的列表,同時內置(內部)和用戶定義的,為function_name。返回值  

php教程檢測函數是否存在函數 function_exists
語法
bool function_exists ( string $function_name )
檢查的定義的函數的列表,同時內置(內部)和用戶定義的,為function_name。
返回值

返回true,如果function_name存在,是一個函數,否則返回false。
*/

if (function_exists('imap_open')) {
    echo "imap functions are available.www.bkjia.com
n";
} else {
    echo "imap functions are not available.
n";
}


//function_exists returns false on null and empty string:

if (function_exists('')) {
                echo "empty string function existsn";
        }

        if (function_exists(null)) {
                echo "null function existsn";
        }
  
//如果您使用suhosin.executor.func.blacklist而不是在你的php.ini disabled_functions,function_exists將返回true為功能。我用這個有與suhosin.executor.func.blacklist和disabled_functions相同beahviour:

function suhosin_function_exists($func) {
    if (extension_loaded('suhosin')) {
        $suhosin = @ini_get("suhosin.executor.func.blacklist");
        if (empty($suhosin) == false) {
            $suhosin = explode(',', $suhosin);
            $suhosin = array_map('trim', $suhosin);
            $suhosin = array_map('strtolower', $suhosin);
            return (function_exists($func) == true && array_search($func, $suhosin) === false);
        }
    }
    return function_exists($func);
}


  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved