I think the title says it, as well...but of course some more explanation
assume i have an array containig strings. if one of my strings contains slashes, like "red/blue/green"
there will be troubles when i use the serialize/unserialize function of php and storing/loading the value in a session-variable.
if you have nested large arrays you have to think about escaping every single value, especially if the dimension of the array is not clear. i don't want to run a recursive algorithm over my nested huge arrays for performance reason.
so how can i get that fixed, anyway?
thanks to all helpers ;-)