php-src/ext/standard/tests/array/bug40191.phpt

22 lines
451 B
Plaintext
Raw Normal View History

--TEST--
Bug #40191 (use of array_unique() with objects triggers segfault)
2007-01-22 08:21:45 +00:00
--SKIPIF--
<?php if (!extension_loaded('spl')) die("skip SPL is not available"); ?>
--FILE--
<?php
$arrObj = new ArrayObject();
$arrObj->append('foo');
$arrObj->append('bar');
$arrObj->append('foo');
$arr = array_unique($arrObj);
var_dump($arr);
echo "Done\n";
?>
--EXPECTF--
Warning: array_unique() expects parameter 1 to be array, object given in %s on line %d
NULL
Done