--TEST-- Test array_combine() function : usage variations - binary safe checking --FILE-- --EXPECT-- *** Testing array_combine() : binary safe checking *** array(2) { ["hello"]=> string(5) "hello" ["world"]=> string(5) "world" } array(2) { [u"hello"]=> string(5) "hello" [u"world"]=> string(5) "world" } array(2) { ["hello"]=> unicode(5) "hello" ["world"]=> unicode(5) "world" } Done