mirror of
https://github.com/php/php-src.git
synced 2025-01-09 12:34:14 +08:00
29 lines
557 B
PHP
29 lines
557 B
PHP
--TEST--
|
|
Testing exception properties
|
|
--FILE--
|
|
<?php
|
|
|
|
class my_file
|
|
{
|
|
public function __toString()
|
|
{
|
|
return "somebuildfilename" ;
|
|
}
|
|
}
|
|
|
|
class my_exception extends exception
|
|
{
|
|
public function __construct()
|
|
{
|
|
$this->message = new stdclass ;
|
|
$this->file = new my_file ;
|
|
$this->line = "12" ;
|
|
}
|
|
}
|
|
|
|
throw new my_exception;
|
|
|
|
?>
|
|
--EXPECT--
|
|
Catchable fatal error: Object of class stdClass could not be converted to string in Unknown on line 0
|