I have a table with a load of rows of serialized arrays that I plan to request and pass it to JavaScript.
JavaScript
The problem is - is it possible to unser
unser
Php.js has javascript implementations of unserialize and serialize:
http://phpjs.org/functions/unserialize/
http://phpjs.org/functions/serialize/
That said, it's probably more efficient to convert to JSON on the server side. JSON.parse is going to be a lot faster than PHP.js's unserialize.