I want to dump request variables to a file for debugging. How\'s this possible?
I think nowadays this method is easier and faster:
$req_dump = print_r($_REQUEST, true); $fp = file_put_contents('request.log', $req_dump, FILE_APPEND);