標籤:fine 不同 contents example 結構 call nbsp efi function
在判斷類、方法、可調用結構的時候經常用到以下方法:
1、function_exists — Return TRUE
if the given function has been defined
2、method_exists — Checks if the class method exists
3、is_callable — Verify that the contents of a variable can be called as a function
function_exists 比較簡單點就是判斷函數有沒有被定義 而method_exists 是判斷類內的方法存不存在 is_callable 檢測參數是否為合法的可調用結構
傳回值 都是 bool
但是參數不同
function_exists 只有一個參數 函數名 $string
method_exists 兩個參數 $object 類對象 $string 方法名
is_callable 三個參數 $var mixed 可以是string array $syntax_only bool $callback_name string
如果is_callable的第一個參數 是 string 那麼 和 function_exists 相似 如果是數組 則和 method_exists
但又有不同
method_exists不會考慮類方法的定義範圍 public protected private 而 is_callable 會在方法是被 protected private 返回 false
is_callable判斷是會去調用__call魔術方法來判斷,而method_exists不會 用PHP.net上的例子解釋就是:
Example:
<?php
class Test {
public function testing($not = false) {
$not = $not ? ‘true‘ : ‘false‘;
echo "testing - not: $not<br/>";
}
public function __call($name, $args) {
if(preg_match(‘/^not([A-Z]\w+)$/‘, $name, $matches)) {
$fn_name = strtolower($matches[1]);
if(method_exists($this, $fn_name)) {
$args[] = true; // add NOT boolean to args
return call_user_func_array(array($this, $matches[1]), $args);
}
}
die("No method with name: $name<br/>");
}
}
$t = new Test();
$t->testing();
$t->notTesting();
echo "exists: ".method_exists($t, ‘notTesting‘).‘<br/>‘;
echo "callable: ".is_callable(array($t, ‘notTesting‘));
?>
Output:
testing - not: false
testing - not: true
exists:
callable: 1
php 中 function_exists 、 method_exists 和 is_callable