判断函数是否存在

Posted 怪咖咖

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了判断函数是否存在相关的知识,希望对你有一定的参考价值。

当我们创建了自定义函数,并且了解了可变函数的用法,为了确保程序调用的函数是存在的,经常会先使用function_exists判断一下函数是否存在。同样的method_exists可以用来检测类的方法是否存在。

判断函数是否存在  function_exists()
function
func() {
}
if(function_exists(‘func‘))
{
    echo"存在";
}
判断类是否存在 class_exists()
class
func {
} 
 // 使用前检查类是否存在
if(class_exists(‘func‘)) { $func = new func(); }
判断文件是否存在

$filename
= ‘test.txt‘; if (!file_exists($filename)) { echo $filename . ‘ not exists.‘; }

 

以上是关于判断函数是否存在的主要内容,如果未能解决你的问题,请参考以下文章

JavaScript中判断函数是否存在 - function_exists

JavaScript中判断函数是否存在 - function_exists

817. Linked List Components - LeetCode

判断函数是否存在

Python代码阅读(第38篇):根据谓词函数和属性字符串构造判断函数

JavaScript笔试题(js高级代码片段)