Subtitles::downloadRow PHP 메소드

downloadRow() 개인적인 메소드

private downloadRow ( $row )
    private function downloadRow($row)
    {
        if (!$row || !file_exists($this->subsDir . $row["filnamn"])) {
            header($_SERVER["SERVER_PROTOCOL"] . " 404 Not Found");
            header("Status: 404 Not Found");
            exit;
        }
        header('Content-Disposition: attachment; filename="' . $row["filnamn"] . '"');
        echo file_get_contents($this->subsDir . $row["filnamn"]);
    }