fork download
  1. <?php
  2.  
  3.  
  4. $_POST[]='A " Test';
  5. array_walk($_POST, create_function('&$val', '$val = str_replace(chr(34), "", $val);'));
  6.  
  7. print_r($_POST);
Success #stdin #stdout 0s 52488KB
stdin
Standard input is empty
stdout
Array
(
    [0] => A  Test
)