Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Provide API to get Tracy output as a string #470

Open
simPod opened this issue Mar 3, 2021 · 0 comments
Open

Provide API to get Tracy output as a string #470

simPod opened this issue Mar 3, 2021 · 0 comments

Comments

@simPod
Copy link
Contributor

simPod commented Mar 3, 2021

I need to get generated HTML. I want to handle rendering myself.

Currently, I have to do

ob_start();

$blueScreen->render($exception);

$contents = ob_get_clean();

However, render method has still some overhead, eg. adds header, checks for AJAX etc.

Basically, something like public function renderToString(\Throwable $exception): string would do.

Concept:

public function renderToFile(\Throwable $exception, string $file): string
{
	ob_start(); // double buffer prevents sending HTTP headers in some PHP
	$this->renderTemplate($exception, __DIR__ . '/assets/page.phtml', false);
	return ob_end_clean();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant