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


PHP RuntimeException::__toString方法代码示例

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


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

示例1: __toString

 /**
  * Returns a string representation of the exception.
  *
  * @return string The exception as a string.
  */
 public function __toString()
 {
     $result = parent::__toString();
     if (null !== $this->getSocketErrorNumber()) {
         $result .= "\nSocket error number:" . $this->getSocketErrorNumber();
     }
     if (null !== $this->getSocketErrorMessage()) {
         $result .= "\nSocket error message:" . $this->getSocketErrorMessage();
     }
     return $result;
 }
开发者ID:brucewu16899,项目名称:routeros,代码行数:16,代码来源:SocketException.php

示例2: __toString

 public function __toString()
 {
     if (!$this->getPrevious()) {
         return parent::__toString();
     }
     // PHP strangely shows the innermost exception first before the outer
     // exception message. It also has a default character limit for
     // exception message strings such that the "next" exception (this one)
     // might not even get shown, causing developers to attempt to catch
     // the inner exception instead of the actual exception because they
     // can't see the outer exception's __toString output.
     return sprintf("exception '%s' with message '%s'\n\n%s", get_class($this), $this->getMessage(), parent::__toString());
 }
开发者ID:abdala,项目名称:generic-api-client,代码行数:13,代码来源:ApiException.php

示例3: __toString

 public function __toString()
 {
     return 'Socket exception: ' . parent::__toString();
 }
开发者ID:innomatic,项目名称:innomatic-legacy,代码行数:4,代码来源:SocketException.php

示例4: __toString

 public function __toString()
 {
     return parent::__toString() . implode("\n", $this->errors);
 }
开发者ID:mlebkowski,项目名称:crane,代码行数:4,代码来源:ValidatorException.php


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