i have multidimensional arrays generated by PHP with data from database ,but i have chars like \"č ć š đ ž\" and when i try to output that in json he just returns null , i d
if multidimensional array, then use foreach loop and use this line inside foreach suppose
foreach ($your_array as $line){ $line = array_map("utf8_decode", $line); }