博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
function_exists, method_exists, is_callable的区别
阅读量:5334 次
发布时间:2019-06-15

本文共 1456 字,大约阅读时间需要 4 分钟。

function_exists — Return TRUE if the given function has been defined 

method_exists  — Checks if the class method exists

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不会  用.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

转载于:https://www.cnblogs.com/qinqiu/p/6558122.html

你可能感兴趣的文章
cxf和jboss eap 6.2版本号冲突
查看>>
ORACLE触发器具体解释
查看>>
IOS开发之SVN的使用
查看>>
Python学习之元组
查看>>
第三次作业
查看>>
quartz多任务调度+spring 实现
查看>>
Codeforces 97.B Superset
查看>>
noip2008 笨小猴
查看>>
洛谷P1459 三值的排序 Sorting a Three-Valued Sequence
查看>>
合并流
查看>>
Nosql数据库教程之初探MongoDB
查看>>
Orchard详解--第三篇 依赖注入之基础设施
查看>>
ASP.NET没有魔法——ASP.NET MVC路由
查看>>
莫烦RL-01小例子
查看>>
3.23下午
查看>>
UISegmentedControl
查看>>
学习layer和laydate的官方文档
查看>>
Cocoa Touch提供了哪几种Core Animation过渡类型?
查看>>
复利实验的感想
查看>>
C++之QT
查看>>