略微加速

PHP官方手册 - 互联网笔记

PHP - Manual: Exception::__toString

2024-04-18

Exception::__toString

(PHP 5, PHP 7, PHP 8)

Exception::__toString将异常对象转换为字符串

说明

public Exception::__toString(): string

返回转换为字符串(string)类型的异常。

参数

此函数没有参数。

返回值

返回转换为字符串(string)类型的异常。

范例

示例 #1 Exception::__toString()示例

<?php
try {
    throw new 
Exception("Some error message");
} catch(
Exception $e) {
    echo 
$e;
}
?>

以上例程的输出类似于:

exception 'Exception' with message 'Some error message' in /home/bjori/tmp/ex.php:3
Stack trace:
#0 {main}

参见

add a noteadd a note

User Contributed Notes

There are no user contributed notes for this page.

官方地址:https://www.php.net/manual/en/exception.tostring.php

北京半月雨文化科技有限公司.版权所有 京ICP备12026184号-3