1--TEST-- 2Test array_fill_keys() function : variation of parameter 3--FILE-- 4<?php 5/* Testing with unexpected argument types */ 6 7echo "*** Testing array_fill_keys() : parameter variations ***\n"; 8 9$fp = fopen(__FILE__, "r"); 10$array = array("one", "two"); 11 12echo "\n-- Testing array_fill_keys() function with unusual second arguments --\n"; 13var_dump( array_fill_keys($array, $fp) ); 14 15fclose($fp); 16echo "Done"; 17?> 18--EXPECTF-- 19*** Testing array_fill_keys() : parameter variations *** 20 21-- Testing array_fill_keys() function with unusual second arguments -- 22array(2) { 23 ["one"]=> 24 resource(%d) of type (stream) 25 ["two"]=> 26 resource(%d) of type (stream) 27} 28Done 29