JSON vs. Serialized Array in database

Viewed 45820

What are the advantages and disadvantages of storing JSON data in MySQL database vs. serialized array?

11 Answers

atm, json_encode() works only with UTF-8 encoded data.. therefore, it cannot encode characters such as "ñ", else it returns NULL

Related