blob: 3b1543d4dcf11dd358fdb279699d090b43141914 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
--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
(
)
|