PHP code example of innmind / stack-trace
1. Go to this page and download the library: Download innmind/stack-trace library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
innmind / stack-trace example snippets
use Innmind\StackTrace\{
StackTrace,
Render,
};
use Innmind\OperatingSystem\Factory;
use Innmind\Server\Control\Server\Command;
$trace = StackTrace::of(new AnyClassImplementingPhpThrowableInterface);
// every call frames that lead to the exception to be thrown
// (deepest call frame first)
$callFrames = $trace->throwable()->callFrames();
// this will render the stack trace via graphviz
Factory::build()
->control()
->processes()
->execute(
Command::foreground('dot')
->withShortOption('Tsvg')
->withShortOption('o', 'graph.svg')
->withInput(
Render::of()($trace)
),
)
->wait();