« PHP:func_get_arg()関数・func_get_args()関数・func_num_args()関数 | メイン | PHP:register_shutdown_function()関数 »

2006年02月18日

PHP:function_exists()関数

function_exists()関数は、指定した関数が定義されている場合にTRUEを返します。

※function_exists()関数がTRUEを返しても、その他設定ファイルやコンパイルオプションの設定などにより、該当関数を使用できない場合があります。

if(function_exists("number_format")){
    print "number_format関数が使用可能です。";
}

※上記の結果、number_format()関数(数字を整形する関数)が使用可能な環境の場合、「number_format関数が使用可能です。」を出力します。

投稿者 wing : 2006年02月18日 01:11

コメント