Serialize PHP data

2

How can I serialize the array below to save in BD?

Itriedtoserializebutitlookedlikethis:

a:2:{s:8:"produto1";a:2:{i:0;s:12:"Novo produto";i:1;s:1:"2";}s:8:"produto2";a:2:{i:0;s:12:"Bolo caseiro";i:1;s:1:"2";}}

I want something like this to remain:

produto1:Novo produto,quantidade:2;produto2:Bolo caseiro,quantidade:2;

And so on, is it possible?

    
asked by anonymous 09.08.2015 / 02:53

1 answer

2

Try to use json_encode in the array and save the string it generates.

    
09.08.2015 / 15:50