php判断文件,目录,函数,类,方法,变量是否存在
判断文件和目录
文件是否存在:file_exists;
目录是否存在:is_dir;
例子:
$dir='./data';
if(is_dir($dir)) echo "目录".$dir."存在"; else echo "目录".$dir."不存在";
类,类方法,普通方法函数
类是否存在:class_exists('calss');
类里面的某个方法是否存在:method_exists ($class,'method');
系统函数或自己写的函数是否存在:function_exists('function');
例子:
class main{
function index(){
echo '我是类里的index方法';
}
}
function index(){
echo '我是index方法';
}
if(class_exists('main')) $main=new main();
if(method_exists($main,'index')) $main->index();//我是类里的index方法
if(function_exists('index')) index(); else echo '没有index方法'; //我是index方法
变量
变量是否存在:isset() 、empty()与is_null
isset()在变量不存在或者为null时,判断为false;
empty()在变量不存在和$x=''/null/array()/false/0/'0',判断为true
is_null()与isset相反
相关推荐
聪聪李 2020-09-10
WasteLand 2020-09-15
xuebingnan 2020-11-05
Crazyshark 2020-09-15
zyyjay 2020-11-09
samtrue 2020-11-22
stefan0 2020-11-22
yifangs 2020-10-13
songshijiazuaa 2020-09-24
hebiwtc 2020-09-18
天步 2020-09-17
83911535 2020-11-13
whatsyourname 2020-11-13
zhouyuqi 2020-11-10
Noneyes 2020-11-10
mathchao 2020-10-28
王志龙 2020-10-28