Просмотр поста

.
AlkatraZ
╭∩╮ (`-`) ╭∩╮
Koenig (17.08.2012/18:24)
AlkatraZ, уже не с компа, кинь код
Вот код самой функции:
/*
    -----------------------------------------------------------------
    Скачка различных списков в виде файла
    -----------------------------------------------------------------
    */
    function downloadFile($str, $file)
    {
        ob_end_clean();
        ob_start();
        echo $str;
        header('Content-Description: File Transfer');
        header('Content-Type: application/octet-stream');
        header('Content-Disposition: attachment; filename=' . $file);
        header('Content-Transfer-Encoding: binary');
        header('Expires: 0');
        header('Cache-Control: must-revalidate');
        header('Pragma: public');
        header('Content-Length: ' . ob_get_length());
        flush();
        return true;
    }
downloadFile($out, 'code.txt');

В переменную $out передаешь тот текст, который нужно скачать в виде файла.