I have a problem. In my MySQL database, I have a column storing the output of a PHP object (as a string):
Array
(
[item_id] => 849
[title] =>
Array
(
[0] => hello
[1] => bye bye
)
......
If I run eval on that, it ofcourse will not work. Is there a function or known technique to getting this back into a php object, or will i have to store in mysql as json (that will be a massive pain).