php 中 function_exists 、 method_exists 和 is_callable

來源:互聯網
上載者:User

標籤: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

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.