File: bug22510.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 (128 lines) | stat: -rw-r--r-- 2,386 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
--TEST--
Bug #22510 (segfault among complex references)
--FILE--
<?php

#[AllowDynamicProperties]
class foo
{
    public $list = array();

    function finalize() {
        print __CLASS__."::".__FUNCTION__."\n";
        $cl = &$this->list;
    }

    function &method1() {
        print __CLASS__."::".__FUNCTION__."\n";
        return @$this->foo;
    }

    function &method2() {
        print __CLASS__."::".__FUNCTION__."\n";
        return $this->foo;
    }

    function method3() {
        print __CLASS__."::".__FUNCTION__."\n";
        return @$this->foo;
    }
}

class bar
{
    public $instance;

    function run1() {
        print __CLASS__."::".__FUNCTION__."\n";
        $this->instance = new foo();
        $this->instance->method1($this);
        $this->instance->method1($this);
    }

    function run2() {
        print __CLASS__."::".__FUNCTION__."\n";
        $this->instance = new foo();
        $this->instance->method2($this);
        $this->instance->method2($this);
    }

    function run3() {
        print __CLASS__."::".__FUNCTION__."\n";
        $this->instance = new foo();
        $this->instance->method3($this);
        $this->instance->method3($this);
    }
}

function ouch(&$bar) {
    print __FUNCTION__."\n";
    @$a = $a;
    $bar->run1();
}

function ok1(&$bar) {
    print __FUNCTION__."\n";
    $bar->run1();
}

function ok2(&$bar) {
    print __FUNCTION__."\n";
    @$a = $a;
    $bar->run2();
}

function ok3(&$bar) {
    print __FUNCTION__."\n";
    @$a = $a;
    $bar->run3();
}

$foo = new bar();
$bar =& $foo;
ok1($bar);
$bar->instance->finalize();
print "done!\n";
ok2($bar);
$bar->instance->finalize();
print "done!\n";
ok3($bar);
$bar->instance->finalize();
print "done!\n";
ouch($bar);
$bar->instance->finalize();
print "I'm alive!\n";
?>
--EXPECTF--
ok1
bar::run1
foo::method1

Notice: Only variable references should be returned by reference in %s on line %d
foo::method1

Notice: Only variable references should be returned by reference in %s on line %d
foo::finalize
done!
ok2
bar::run2
foo::method2
foo::method2
foo::finalize
done!
ok3
bar::run3
foo::method3
foo::method3
foo::finalize
done!
ouch
bar::run1
foo::method1

Notice: Only variable references should be returned by reference in %s on line %d
foo::method1

Notice: Only variable references should be returned by reference in %s on line %d
foo::finalize
I'm alive!