b0y-101 Mini Shell


Current Path : E:/www/b-group.old/spfin - Copy/testpayment/src/xdebug/tests/tracing/
File Upload :
Current File : E:/www/b-group.old/spfin - Copy/testpayment/src/xdebug/tests/tracing/capture-trace.inc

<?php
function show_trace_file() {
	global $tf;

	if (preg_match('@\.gz$@', $tf)) {
		$fp = gzopen($tf, 'r');
		echo stream_get_contents($fp);
	} else {
		echo file_get_contents($tf);
	}
	unlink($tf);
}

register_shutdown_function('show_trace_file');

if (xdebug_get_tracefile_name() === false) {
	$tf = xdebug_start_trace(sys_get_temp_dir() . '/' . uniqid('xdt', TRUE));
} else {
	$tf = xdebug_get_tracefile_name();
}
?>

Copyright © 2019 by b0y-101