mirror of
https://github.com/php/php-src.git
synced 2024-12-04 23:34:25 +08:00
16 lines
229 B
PHP
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
|
|
(
|
|
)
|