slashStrip() public method

deeply strips slashes added by magic quotes. Generally used on $_POST & $_GET.
public slashStrip ( $input )
コード例 #1
0
ファイル: Pommo_Helper.php プロジェクト: soonick/poMMo
 function slashStrip($input)
 {
     if (is_array($input)) {
         foreach ($input as $key => $value) {
             $input[$key] = Pommo_Helper::slashStrip($value);
         }
         return $input;
     } else {
         return stripslashes($input);
     }
 }