--TEST--
-bug #33382 ( array_reverse() fails after *sort() )
+Bug #33382 ( array_reverse() fails after *sort() )
--FILE--
<?php
--TEST--
-Bug#36975 (natcasesort() causes array_pop() to misbehave)
+Bug #36975 (natcasesort() causes array_pop() to misbehave)
--FILE--
<?php
$a = array('aa', 'aa', 'bb', 'bb', 'cc', 'cc');
--TEST--
-bug #35740 (memory leak when including a directory)
+Bug #35740 (memory leak when including a directory)
--FILE--
<?php
--TEST--
-bug 39538
+Bug #39538 (fgetcsv can't handle starting newlines and trailing odd number of backslashes)
--FILE--
<?php
$content = array("\"\nthis is an test\", \"next data\", \"p\narsed\"","\"\r\nthis is an test\", \"next data\", \"p\r\narsed\"","\"\n\rthis is an test\", \"next data\", \"p\n\rarsed\"");
print_r (fgetcsv(fopen($file, "r"), filesize($file)));
}
@unlink($file);
+?>
--EXPECT--
Array
(
--TEST--
-bug #27678 (number_format() crashes with large numbers)
+Bug #27678 (number_format() crashes with large numbers)
--FILE--
<?php
--TEST--
-bug 34821
+Bug #34821 (zlib encoders fail on widely varying binary data)
--SKIPIF--
<?php if (!extension_loaded("zlib")) print "skip"; ?>
--FILE--