Sophie

Sophie

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

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

--TEST--
Test xrange() against range() - 010
--SKIPIF--
<?php if (!extension_loaded("xrange")) print "skip"; ?>
--FILE--
<?php 
// don't necessarily match up with the equality operator (in this test)
echo !array_diff(iterator_to_array(xrange(10, -10, 0.9)), range(10, -10, 0.9)) ? 'Success' : 'Failure';
?>
--EXPECT--
Success