File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / tests / classes / bug27468.phpt
Revision 1.1: download - view: text, annotated - select for diffs - revision graph
Tue Feb 21 23:48:06 2012 UTC (12 years, 7 months ago) by misho
CVS tags: MAIN, HEAD
Initial revision

--TEST--
Bug #27468 (foreach in __destruct() causes segfault)
--FILE--
<?php
class foo {
	function __destruct() {
		foreach ($this->x as $x);
	}
}
new foo();
echo 'OK';
?>
--EXPECTF--
Notice: Undefined property: foo::$x in %sbug27468.php on line 4

Warning: Invalid argument supplied for foreach() in %sbug27468.php on line 4
OK

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>