How can the use of the --raw and --report options in mtr command affect the output when using passthru in PHP?
When using the `passthru` function in PHP to execute the mtr command, the use of the `--raw` option will output the raw data without any formatting, while the `--report` option will generate a report at the end of the output. To handle these different outputs in PHP, you can use the `ob_start` and `ob_get_clean` functions to capture the output and process it accordingly.
<?php
ob_start();
passthru('mtr --raw --report example.com');
$output = ob_get_clean();
echo $output;
?>