Does the string
["first","second","third"]
always preserve array order and result in the PHP array
array('first','second','third');
when using json_decode()
? I realize the answer is NO for objects, but I am asking about a string representing an array as input.