how to add elements to an array in a loop using php

前端 未结 4 1447
失恋的感觉
失恋的感觉 2021-01-13 05:25

I am dynamically trying to populate a multidimensional array and having some trouble.

I have a list of US states. Associative array like this $states[nc], $states[sc

4条回答
  •  醉酒成梦
    2021-01-13 06:31

    The same way you add to an array when the key is not a concern:

    $data[$state]['cities'][] = $city;
    

提交回复
热议问题