mirror of
https://github.com/php/php-src.git
synced 2024-11-24 10:24:11 +08:00
d6505acbf5
If user inherits Exception and overrides the properties to arbitrary data types, or simply doesn't run parent::__construct(), here we go. Just convert everything to the appropriate data type, like Exception::__toString() does.
20 lines
324 B
PHP
20 lines
324 B
PHP
--TEST--
|
|
Bug #64821 Custom Exceptions crash when internal properties overridden (variation 2)
|
|
--FILE--
|
|
<?php
|
|
|
|
class a extends exception {
|
|
public function __construct() {
|
|
$this->line = array();
|
|
}
|
|
}
|
|
|
|
throw new a;
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Uncaught exception 'a' in %s:0
|
|
Stack trace:
|
|
#0 {main}
|
|
thrown in %s on line %d
|