mirror of
https://github.com/php/php-src.git
synced 2024-11-28 12:26:37 +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.
23 lines
402 B
PHP
23 lines
402 B
PHP
--TEST--
|
|
Bug #64821 Custom Exceptions crash when internal properties overridden (variation 1)
|
|
--FILE--
|
|
<?php
|
|
|
|
class a extends exception {
|
|
public function __construct() {
|
|
$this->message = NULL;
|
|
$this->string = NULL;
|
|
$this->code = array();
|
|
$this->line = "hello";
|
|
}
|
|
}
|
|
|
|
throw new a;
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Uncaught exception 'a' in %s:0
|
|
Stack trace:
|
|
#0 {main}
|
|
thrown in %s on line %d
|