--TEST-- Test array_fill_keys() function : variation of parameter --FILE-- --EXPECTF-- *** Testing array_fill_keys() : parameter variations *** -- Testing array_fill_keys() function with reference value -- array(2) { [u"one"]=> unicode(6) "simple" [u"two"]=> unicode(6) "simple" } -- Testing array_fill_keys() function with reference keys -- array(2) { [u"one"]=> unicode(6) "simple" [u"simple"]=> unicode(6) "simple" } array(2) { [u"one"]=> unicode(6) "simple" [u"simple"]=> unicode(6) "simple" } -- Testing array_fill_keys() function with reference array input -- array(2) { [u"one"]=> unicode(3) "bob" [u"two"]=> unicode(3) "bob" } Done