php-src/ext/spl/tests/SplFixedArray__construct_param_null.phpt
2009-05-23 15:38:18 +00:00

16 lines
229 B
PHP

--TEST--
SplFixedArray::__construct() with null passed as parameter.
--CREDITS--
PHPNW Test Fest 2009 - Jordan Hatch
--FILE--
<?php
$array = new SplFixedArray( NULL );
print_r( $array );
?>
--EXPECTF--
SplFixedArray Object
(
)