当前位置: 首页>>代码示例>>PHP>>正文


PHP ErrorHandler::started方法代码示例

本文整理汇总了PHP中Zend\Stdlib\ErrorHandler::started方法的典型用法代码示例。如果您正苦于以下问题:PHP ErrorHandler::started方法的具体用法?PHP ErrorHandler::started怎么用?PHP ErrorHandler::started使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Zend\Stdlib\ErrorHandler的用法示例。


在下文中一共展示了ErrorHandler::started方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: tearDown

 public function tearDown()
 {
     // be sure the error handler has been stopped
     if (ErrorHandler::started()) {
         ErrorHandler::stop();
         $this->fail('ErrorHandler not stopped');
     }
 }
开发者ID:ninahuanca,项目名称:zf2,代码行数:8,代码来源:CommonAdapterTest.php

示例2: testStarted

 public function testStarted()
 {
     $this->assertFalse(ErrorHandler::started());
     ErrorHandler::start();
     $this->assertTrue(ErrorHandler::started());
     ErrorHandler::stop();
     $this->assertFalse(ErrorHandler::started());
 }
开发者ID:pnaq57,项目名称:zf2demo,代码行数:8,代码来源:ErrorHandlerTest.php

示例3: fromString

 /**
  * Loads the SOAP message from a string.
  * 
  * @param string $soapData
  * @throws SoapException\LoadSoapDataException
  */
 public function fromString($soapData)
 {
     $dom = $this->getDom();
     try {
         ErrorHandler::start();
         $dom->loadXML($soapData);
         ErrorHandler::stop(true);
     } catch (\Exception $e) {
         if (ErrorHandler::started()) {
             ErrorHandler::stop();
         }
         throw new SoapException\LoadSoapDataException($e->getMessage());
     }
     $rootElement = $dom->documentElement;
     if ('envelope' != strtolower($rootElement->localName)) {
         throw new SoapException\LoadSoapDataException(sprintf("Invalid root element '%s'", $rootElement->localName));
     }
 }
开发者ID:ivan-novakov,项目名称:php-saml-ecp-client,代码行数:24,代码来源:Message.php

示例4: isValid

 /**
  * {@inheritdoc}
  * @see \Saml\Ecp\Response\Validator\ValidatorInterface::isValid()
  */
 public function isValid(ResponseInterface $response)
 {
     $valid = false;
     $schemaFile = $this->getOption(self::OPT_SOAP_ENVELOPE_XSD);
     if (null === $schemaFile) {
         throw new GeneralException\MissingOptionException(self::OPT_SOAP_ENVELOPE_XSD);
     }
     if (!file_exists($schemaFile)) {
         throw new GeneralException\FileNotFoundException($schemaFile);
     }
     if (!is_file($schemaFile)) {
         throw new GeneralException\InvalidFileException(sprintf("Invalid file: '%s'", $schemaFile));
     }
     if (!is_readable($schemaFile)) {
         throw new GeneralException\InvalidFileException(sprintf("File not readable: '%s'", $schemaFile));
     }
     try {
         $soapMessage = $response->getSoapMessage();
     } catch (\Exception $e) {
         $this->addMessage(sprintf("Error loading SOAP message: [%s] %s", get_class($e), $e->getMessage()));
         return false;
     }
     $dom = $soapMessage->getDom();
     try {
         ErrorHandler::start();
         if ($dom->schemaValidate($schemaFile)) {
             $valid = true;
         }
         ErrorHandler::stop(true);
     } catch (\Exception $e) {
         $this->addMessage(sprintf("Failed schema validate (schema:%s): [%s] %s", $schemaFile, get_class($e), $e->getMessage()));
     }
     if (ErrorHandler::started()) {
         ErrorHandler::stop();
     }
     return $valid;
 }
开发者ID:ivan-novakov,项目名称:php-saml-ecp-client,代码行数:41,代码来源:SoapEnvelope.php

示例5: write

 /**
  * Log a message to this writer.
  *
  * @param array $event log data event
  * @return void
  */
 public function write(array $event)
 {
     foreach ($this->filters as $filter) {
         if (!$filter->filter($event)) {
             return;
         }
     }
     $errorHandlerStarted = false;
     if ($this->convertWriteErrorsToExceptions && !ErrorHandler::started()) {
         ErrorHandler::start($this->errorsToExceptionsConversionLevel);
         $errorHandlerStarted = true;
     }
     try {
         $this->doWrite($event);
     } catch (\Exception $e) {
         if ($errorHandlerStarted) {
             ErrorHandler::stop();
             $errorHandlerStarted = false;
         }
         throw $e;
     }
     if ($errorHandlerStarted) {
         $error = ErrorHandler::stop();
         $errorHandlerStarted = false;
         if ($error) {
             throw new Exception\RuntimeException("Unable to write", 0, $error);
         }
     }
 }
开发者ID:eltondias,项目名称:Relogio,代码行数:35,代码来源:AbstractWriter.php


注:本文中的Zend\Stdlib\ErrorHandler::started方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。