Sophie

Sophie

distrib > Mandriva > 2008.1 > x86_64 > by-pkgid > 1bb38368223e1f189b9d62472aa4b685 > files > 11

php-xrange-1.3.1-1mdv2008.1.x86_64.rpm

--TEST--
Test referenced B (foreach / &$i)
--SKIPIF--
<?php
	if (!extension_loaded("xrange")) print "skip";
?>
--FILE--
<?php 
$j = 0;
foreach (xrange(-10, 10) as &$i) { $i = 0; ++$j; }
echo $j == 21 ? 'Success' : 'Failure';
?>
--EXPECTF--
Fatal error: Cannot create references to elements of a temporary array expression %a