Supported Versions: PHP 4, PHP 5, PHP 7, PHP 8
Turn on output buffering
<?php ob_start(?callable $callback = null, int $chunk_size = 0, int $flags = PHP_OUTPUT_HANDLER_STDFLAGS): bool
<?php     public function enable(): void

    {

        ob_start(function (string $message): string {

            $this->buffer .= $message;



            return '';

        });

    }
<?php     {

        extract($data);



        ob_start();



        $path = str_replace('.', '/', $path);