getOutputPath() защищенный статический Метод

Return $filename with temp directory and delete file
protected static getOutputPath ( $filename ) : string
$filename
Результат string path of file in temp directory
Пример #1
0
 public function sendToDisk($filename)
 {
     $filename = ReportRenderer::makeFilenameWithExtension($filename, self::PDF_CONTENT_TYPE);
     $outputFilename = ReportRenderer::getOutputPath($filename);
     $this->TCPDF->Output($outputFilename, 'F');
     return $outputFilename;
 }