在php中怎么判断一个方法是否存在?
1.判断函数是否存在 function_exists ('函数名');
2.判断类是否存在 class_exists('类名');
3.判断类下的方法是否存在 method_exists('类名','方法名');