首页 > 代码库 > PHP两个常见不常用的方法 method_exists call_user_func
PHP两个常见不常用的方法 method_exists call_user_func
method_exists判断方法是否存在
<?php class F{ public function __construct(){ if(method_exists($this, ‘son_fun1‘)){ echo ‘son_fun1存在‘; }else{ echo ‘son_fun1不存在‘; } if(method_exists($this,‘son_fun2‘)){ echo ‘son_fun2存在‘; }else{ echo ‘son_fun2不存在‘; } } } class S extends F{ public function son_fun1(){ } } $a = new S();
call_user_func 动态传入函数方法名
<?php error_reporting(E_ALL); function increment(&$var) { $var++; } $a = 0; call_user_func(‘increment‘, $a); echo $a."\n"; // You can use this instead call_user_func_array(‘increment‘, array(&$a));//要被传入回调函数的数组得是索引数组。 echo $a."\n";
PHP两个常见不常用的方法 method_exists call_user_func
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。