douzhi2012 2018-04-16 04:01
浏览 189
已采纳

为什么PHP不能捕获在尝试实例化SoapClient对象时导致的异常?

If you dont have the php_soap.dll extension enabled in the php.ini file, trying to create an instance of SoapClient will cause PHP to break.

If i surround the instatiation with a try-catch block like so,

try{
       $client = new SoapClient ($wsdl, array('cache_wsdl' => WSDL_CACHE_NONE) );   
       $result = $client->{$web_service}($parameters)->{$web_service."Result"};
       return $result;
   }
   catch(Exception $e){
        echo $e->getMessage();
   }

it wont catch the excetion. Instead, it is like die()has been called somewhere in the internal PHP code. Does anyone know why this is the case?

note: im using PHP version 7.2.1

  • 写回答

2条回答 默认 最新

  • duanji6997 2018-04-16 06:25
    关注

    As Arvind already pointed out, Errors and Exceptions are two different things in PHP. try/catch works only with Exceptions, not with errors.

    Here a little bit more explanation what you can do:

    Error handling is defined more or less globally for an application. The built-in error handling checks the severity of the error and depending on this, logs the error and halts the execution.

    You can override this behavior by setting a custom error handler using set_error_handler() (http://php.net/set_error_handler).

    Quite a common way is to define an custom error handler which raises an Exception. Then you're able to handle errors and exceptions with try/catch in your code. An example error handler which does exactly this is written here: http://php.net/manual/en/class.errorexception.php.

    Copied from there the most interessting part:

    function exception_error_handler($severity, $message, $file, $line) {
        if (!(error_reporting() & $severity)) {
            // This error code is not included in error_reporting
            return;
        }
        throw new ErrorException($message, 0, $severity, $file, $line);
    }
    set_error_handler("exception_error_handler");
    

    If you place this code somewhere near to the start of your application, instead of raising errors ErrorExceptions will be thrown. This should work with the SoapClient errors.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 请教:如何用postman调用本地虚拟机区块链接上的合约?
  • ¥15 为什么使用javacv转封装rtsp为rtmp时出现如下问题:[h264 @ 000000004faf7500]no frame?
  • ¥15 乘性高斯噪声在深度学习网络中的应用
  • ¥15 运筹学排序问题中的在线排序
  • ¥15 关于docker部署flink集成hadoop的yarn,请教个问题 flink启动yarn-session.sh连不上hadoop,这个整了好几天一直不行,求帮忙看一下怎么解决
  • ¥15 深度学习根据CNN网络模型,搭建BP模型并训练MNIST数据集
  • ¥15 C++ 头文件/宏冲突问题解决
  • ¥15 用comsol模拟大气湍流通过底部加热(温度不同)的腔体
  • ¥50 安卓adb backup备份子用户应用数据失败
  • ¥20 有人能用聚类分析帮我分析一下文本内容嘛