- i know that this question asked before but i have never found anything working for my case
- i have 2 array which is looking like this
Array ( [0] => Array ( [`19 January 2021`] => Array ( [0] => Array ( [0] => 36 [1] => 817 [2] => 67 ) ) ) ) Array ( [0] => Array ( [`20 January 2021`] => Array ( [0] => Array ( [0] => 79 ) ) ) )
- then i used
json_encode()
php method to encode this array which will be looking like this
[{"`19 January 2021`":[["36","817","67"]]}][{"`20 January 2021`":[["79"]]}]