--TEST-- Test parse_str() function : Basic functionality --FILE-- ===DONE=== --EXPECTF-- *** Testing parse_str() : basic functionality *** Test string with array values NULL unicode(3) "abc" array(3) { [0]=> unicode(3) "123" [1]=> unicode(5) "false" [2]=> unicode(4) "last" } array(1) { [0]=> unicode(3) "str" } array(1) { [0]=> unicode(3) "3.5" } Test string with array values and results array NULL array(4) { [u"first"]=> unicode(3) "abc" [u"a"]=> array(3) { [0]=> unicode(3) "123" [1]=> unicode(5) "false" [2]=> unicode(4) "last" } [u"b"]=> array(1) { [0]=> unicode(3) "str" } [u"c"]=> array(1) { [0]=> unicode(3) "3.5" } } Test string containing numerical array keys NULL array(1) { [u"arr"]=> array(2) { [1]=> unicode(3) "sid" [4]=> unicode(4) "bill" } } Test string containing associative keys NULL array(1) { [u"arr"]=> array(2) { [u"first"]=> unicode(3) "sid" [u"forth"]=> unicode(4) "bill" } } Test string with array values with same name as existing variable NULL array(3) { [0]=> unicode(3) "123" [1]=> unicode(5) "false" [2]=> unicode(4) "last" } Test string with non-array value with same name as existing array variable unicode(3) "999" Test string with encoded data unicode(17) "<== foo bar ==>" unicode(17) "###Hello World###" Test string with single quotes characters NULL unicode(4) "Bill" unicode(8) "O'Reilly" Test string with backslash characters NULL unicode(6) "10\2=5" Test string with double quotes data NULL unicode(30) "A string with "quoted" strings" Test string with nulls NULL unicode(34) "A string with containing nulls" Test string with 2-dim array with numeric keys NULL array(1) { [u"arr"]=> array(1) { [3]=> array(2) { [4]=> unicode(3) "sid" [6]=> unicode(4) "fred" } } } Test string with 2-dim array with null keys NULL array(1) { [u"arr"]=> array(2) { [0]=> array(1) { [0]=> unicode(3) "sid" } [1]=> array(1) { [0]=> unicode(4) "fred" } } } Test string with 2-dim array with non-numeric keys NULL array(1) { [u"arr"]=> array(2) { [u"one"]=> array(1) { [u"four"]=> unicode(3) "sid" } [u"three"]=> array(1) { [u"six"]=> unicode(4) "fred" } } } Test string with 3-dim array with numeric keys NULL array(1) { [u"arr"]=> array(1) { [1]=> array(1) { [2]=> array(2) { [3]=> unicode(3) "sid" [6]=> unicode(4) "fred" } } } } ===DONE===