File: new.phpt

package info (click to toggle)
php8.4 8.4.16-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 211,276 kB
  • sloc: ansic: 1,176,142; php: 35,419; sh: 11,964; cpp: 7,208; pascal: 4,951; javascript: 3,091; asm: 2,817; yacc: 2,411; makefile: 696; xml: 446; python: 301; awk: 148
file content (62 lines) | stat: -rw-r--r-- 1,070 bytes parent folder | download | duplicates (3)
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