PMA\libraries\plugins\schema\eps\Eps::showOutput PHP Метод

showOutput() публичный Метод

Output EPS Document for download
public showOutput ( string $fileName ) : void
$fileName string name of the eps document
Результат void
    public function showOutput($fileName)
    {
        // if(ob_get_clean()){
        //ob_end_clean();
        //}
        $output = $this->stringCommands;
        Response::getInstance()->disable();
        PMA_downloadHeader($fileName, 'image/x-eps', strlen($output));
        print $output;
    }