<?php class a{ function stripslashes_deep($value) { $value = is_array($value) ? array_map('stripslashes_deep', $value) : stripslashes($value); return $value; } } $t = new a(); $array = array("f\\'oo", "b\\'ar", array("fo\\'o", "b\\'ar")); $array = $t->stripslashes_deep($array); print_r($array); ?>
You have javascript disabled. You will not be able to edit any code.