I need to stripslashes all items of an array at once.
stripslashes
Any idea how can I do this?
You can use array_map:
$output = array_map('stripslashes', $array);