PHP-php 方法调用的方法
if($interface === 'login') {
$api->login($outer);
}
elseif ($interface === 'charge'){
$api->charge($outer);
}
elseif ($interface === 'query') {
$api->query($outer);
}
else {
throw new Exception('');
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
try{
$api->{$interface}($roter);
}catch(Exception $e){
throw new Exception();
}
方法很多,比如用 call_user_func(),或者 call_user_func_array() 調用。使用method_exists() 檢查方法是否存在。
代碼類似:
if(method_exists($api,$interface)){
call_user_func(array($api,$interface),$roter);
}else{
//...
}
如果$interface有多個參數,並且參數個數不確定的時候可以使用 call_user_func_array()。