Convert arrays into UTF-8 ? PHP JSON

前端 未结 7 1792
盖世英雄少女心
盖世英雄少女心 2021-01-03 01:56

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

7条回答
  •  抹茶落季
    2021-01-03 02:30

    I don't use a function, I use the conversion in each assignment like:

    $APP_UA_ID = utf8_encode($row['APP_UA_ID']);
    

提交回复
热议问题