Your IP : 216.73.216.48


Current Path : /hdd/hdd21/main/php5/php-5.6.6/tests/lang/
Upload File :
Current File : //hdd/hdd21/main/php5/php-5.6.6/tests/lang/bug27535.phpt

--TEST--
Bug #27535 (Objects pointing to each other cause Apache to crash)
--FILE--
<?php
                                                                                                                                
class Class1
{
	public $_Class2_obj;
}

class Class2
{
	public $storage = '';

	function Class2()
	{
		$this->storage = new Class1();

		$this->storage->_Class2_obj = $this;
	}
}

$foo = new Class2();

?>
Alive!
--EXPECT--
Alive!