On May 8, 2011 1:57 PM, "Eli Orr (Office)" <eli....@logodial.com> wrote: > > > Dear PHP Gurus, > > I need dump a $_POST parameters as part of debug process with a client. > Any know service to make this ? > > I know $_POST is an Array but I look for a service function that can save the parsed array into a file. > let say : > > $stt = save_POST_into_file ($_POST, $fp); >
file_put_contents($filename, print_r($array, true)); Regards