20
Nov '11

Using the output buffer to grab the var_dump output

ob_start();

var_dump($_REQUEST);

if ($handle = fopen("/tmp/error.log", "w")) {
	fwrite($handle, ob_get_contents());
}

fclose($handle);
ob_end_clean();