Your IP : 216.73.216.48


Current Path : /hdd/hdd21/main/php/php-7.3.1/Zend/tests/
Upload File :
Current File : //hdd/hdd21/main/php/php-7.3.1/Zend/tests/bug33710.phpt

--TEST--
Bug #33710 (ArrayAccess objects doesn't initialize $this)
--FILE--
<?php

class Foo implements ArrayAccess
{
	function offsetExists($offset) {/*...*/}
	function offsetGet($offset) {/*...*/}
	function offsetSet($offset, $value) {/*...*/}
	function offsetUnset($offset) {/*...*/}

	function fail()
	{
		$this['blah'];
	}

	function succeed()
	{
		$this;
		$this['blah'];
	}
}

$bar = new Foo();
$bar->succeed();
$bar->fail();

?>
===DONE===
--EXPECT--
===DONE===