1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
|
--TEST--
new in constant expressions
--FILE--
<?php
try {
eval('static $a = new DoesNotExist;');
} catch (Error $e) {
echo $e->getMessage(), "\n";
}
static $b = new stdClass;
var_dump($b);
try {
eval('static $c = new stdClass([] + 0);');
} catch (Error $e) {
echo $e->getMessage(), "\n";
}
class Test {
public function __construct(public $a, public $b) {}
}
try {
eval('static $d = new Test(new stdClass, [] + 0);');
} catch (Error $e) {
echo $e->getMessage(), "\n";
}
static $e = new Test(new stdClass, 42);
var_dump($e);
class Test2 {
public function __construct() {
echo "Side-effect\n";
throw new Exception("Failed to construct");
}
}
try {
eval('static $f = new Test2();');
} catch (Exception $e) {
echo $e->getMessage(), "\n";
}
?>
--EXPECT--
Class "DoesNotExist" not found
object(stdClass)#2 (0) {
}
Unsupported operand types: array + int
Unsupported operand types: array + int
object(Test)#4 (2) {
["a"]=>
object(stdClass)#1 (0) {
}
["b"]=>
int(42)
}
Side-effect
Failed to construct
|