summaryrefslogtreecommitdiff
path: root/Zend/tests/bug75420.15.phpt
blob: f747b4c8871187d892e26e918ea2e11c66fb99ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
--TEST--
Bug #75420.15 (Indirect modification of magic method argument)
--FILE--
<?php
class Test implements ArrayAccess {
	public function offsetExists($x) { }
	public function offsetGet($x) { }
	public function offsetSet($x, $y) { $GLOBALS["name"] = 24; var_dump($x); }
	public function offsetUnset($x) { }
}

$obj = new Test;
$name = "foo";
$name = str_repeat($name, 2);
$obj[$name] = 1;
var_dump($name);
?>
--EXPECT--
string(6) "foofoo"
int(24)