	$detectfile = substr($file, 0, -5) . "-detect.phpt";
	$old_contents = file_get_contents($detectfile);

	$new_contents = $old_contents . $output;
	$df = fopen($detectfile, "a");
	fwrite($df, $new_contents);
	fclose($df);
