Are there best practices for handling the 'file' key in the output of debug_backtrace in PHP?

When using debug_backtrace in PHP, the 'file' key in the output can sometimes contain absolute paths to files on the server, which may not be desirable for security reasons. To handle this, it is recommended to sanitize the file paths by removing the server's root path or replacing it with a placeholder. This helps prevent exposing sensitive server information in the debug output.

$backtrace = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS);

foreach ($backtrace as $trace) {
    if (isset($trace['file'])) {
        $trace['file'] = str_replace($_SERVER['DOCUMENT_ROOT'], '', $trace['file']);
        // Or replace with a placeholder
        // $trace['file'] = 'FILE_PATH_HIDDEN';
    }
    
    // Output or use the sanitized file path
    echo $trace['file'] . ':' . $trace['line'] . PHP_EOL;
}