I have to json_encode a PHP array to a JavaScript array. Unfortunately, the jQuery library I am using will not properly process that array if it contains integers instead of strings.
Most of the time, this will produce proper array containing only strings:
json_encode($data)
Even if $data
contains just numbers, I usually get this:
["3","7","8"]
Sometimes though, I get results like this (note the zero):
["9691","1792","26","1","4","15",0,"1"]
or this
[16171,15470,10390,7585]
(Note, this is obviously different data to illustrate what's going on). I need to enforce json_encode to treat the array values as strings. I know there's the opposite option JSON_NUMERIC_CHECK which enforces numbers. Does the equivalent really not exist? Seems my only option is to process the array again on the JavaScript end, which, while possible, somewhat breaks the encapsulation of my objects.