Converting a PHP associative array to a JSON associative array
I am converting a look-up table in PHP which looks like this to JavaScript using json_encode:
AbilitiesLookup Object
(
[abilities:private] => Array
(
[1] => Ability_MeleeAttack Object
(
[abilityid:protected] =>
[range:protected] => 1
[name:protected] => MeleeAttack
[ability_identifier:protected] => MeleeAttack
[aoe_row:protected] => 开发者_StackOverflow中文版1
[aoe_col:protected] => 1
[aoe_shape:protected] =>
[cooldown:protected] => 0
[focusCost:protected] => 0
[possibleFactions:protected] => 2
[abilityDesc:protected] => Basic Attack
)
.....snipped...
And in JSON, it is:
{"1":{"name":"MeleeAttack","fof":"2","range":"1","aoe":[null,"1","1"],"fp":"0","image":"dummy.jpg"},....
The problem is I get a JS object, not an array, and the identifier is a number. I see 2 ways around this problem - either find a way to access the JSON using a number (which I do not know how) or make it such that json_encode (or some other custom encoding functions) can give a JavaScript associative array.
(Yes, I am rather lacking in my JavaScript department).
Note: The JSON output doesn't match the array - this is because I do a manual json encoding for each element in the subscript, before pushing it onto an array (with the index as the key), then using json_encode on it. To be clear, the number are not sequential because it's an associative array (which is why the JSON output is not an array).
array('a', 'b', 'c') encodes as ['a', 'b', 'c'],
Maybe the reason of conversion to object instead of array is that you index your php array from 1 not from 0
I've checked and
<?php
echo json_encode(array('a', 'b', 'c'))."\n";
echo json_encode(array(0 => 'a', 'b', 'c'))."\n"; // same as above but explicit
echo json_encode(array(1 => 'a', 'b', 'c'))."\n";
gives
["a","b","c"]
["a","b","c"]
{"1":"a","2":"b","3":"c"}
JavaScript object property names can be strings in any format. They can even be just digits (as it is in your case) and there's no issue with accessing them with numeric indexes/keys:
var obj = {
"1": "foo",
"2": "bar"
};
obj["1"]; // returns "foo"
obj[1]; // returns "foo" (1 will implicitly get cast to the string "1")
精彩评论