ノブの質問です。私はこれを持っています:
Array
(
[0] => address = 123 Something Street
[1] => address2 = Something else
[2] => city = Kalamazoo
[3] => state = MI
[4] => zip = 49097
[5] => country = United States
)
しかし、私はこれが欲しい:
Array
(
[address] => 123 Something Street
[address2] => Something else
[city] => Kalamazoo
[state] => MI
[zip] => 49097
[country] => United States
)
どうすればいいですか?ありがとう!