Convert var_dump of array back to array variable

var_export or serialize is what you’re looking for. var_export will render a PHP parsable array syntax, and serialize will render a non-human readable but reversible “array to string” conversion… Edit Alright, for the challenge: Basically, I convert the output into a serialized string (and then unserialize it). I don’t claim this to be perfect, but … Read more

tech