We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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.
public function renderToString(\Throwable $exception): string
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(); }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I need to get generated HTML. I want to handle rendering myself.
Currently, I have to do
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:
The text was updated successfully, but these errors were encountered: