PHP code example of soooldier / hyperf-whoops

1. Go to this page and download the library: Download soooldier/hyperf-whoops 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/ */

    

soooldier / hyperf-whoops example snippets


class AppExceptionHandler extends ExceptionHandler
{
    /**
     * @var ContainerInterface
     */
    private $container;

    /**
     * @var StdoutLoggerInterface
     */
    private $logger;

    public function __construct(StdoutLoggerInterface $logger, ContainerInterface $container)
    {
        $this->logger = $logger;
        $this->container = $container;
    }

    public function handle(Throwable $throwable, ResponseInterface $response)
    {
        $whoops = $this->container->get('whoops');
        $content = $whoops->getHtmlOutput($throwable); // 获取html格式输出,日志最详细
        // $content = $whoops->getJsonOutput($throwable); // 获取json格式输出,通常配合ajax使用
        // $content = $whoops->getPlainTextOutput($throwable); // 文本格式输出,通常记日志
        return $response->withStatus(500)->withBody(new SwooleStream($content));
    }

    public function isValid(Throwable $throwable): bool
    {
        return true;
    }
}