1--TEST-- 2SplFixedArray::__construct() with null passed as parameter. 3--CREDITS-- 4PHPNW Test Fest 2009 - Jordan Hatch 5--FILE-- 6<?php 7 8$array = new SplFixedArray( NULL ); 9 10print_r( $array ); 11 12?> 13--EXPECTF-- 14Deprecated: SplFixedArray::__construct(): Passing null to parameter #1 ($size) of type int is deprecated in %s on line %d 15SplFixedArray Object 16( 17) 18