<code>$a=get(1); //出错,找不到定义 echo $a; if(!function_exists("get")){ function get($a){ return "test"; } }</code>
想實現功能,就是檢測這函數有沒有定義,有的話,就不定義了,沒有就定義下
function_exists位置在文件尾部,提示找不到函數定義
<code>$a=get(1); //出错,找不到定义 echo $a; if(!function_exists("get")){ function get($a){ return "test"; } }</code>
想實現功能,就是檢測這函數有沒有定義,有的話,就不定義了,沒有就定義下
function_exists位置在文件尾部,提示找不到函數定義
<code class="php">if(!function_exists("get")){ function get($a){ return "test"; } } $a=get(1); // 这不就找到了 echo $a;</code>
推薦用方法is_callable
,手冊
解釋順序執行..