19 declare(strict_types=1);
42 $this->
http->saveResponse($this->
http->response()->withBody(
45 $this->
http->sendResponse();
52 string $mime =
"application/octet-stream" 54 $delivery =
new Delivery(
58 $delivery->setMimeType($mime);
59 $delivery->setSendMimeType(
true);
61 $delivery->setDownloadFileName($filename);
62 $delivery->setConvertFileNameToAsci(
true);
64 $this->
http->saveResponse($repsonse);
71 string $mime =
"application/octet-stream" 73 $delivery =
new Delivery(
77 $delivery->setMimeType($mime);
78 $delivery->setSendMimeType(
true);
80 $delivery->setDownloadFileName($filename);
81 $delivery->setConvertFileNameToAsci(
true);
82 $repsonse = $this->
http->response()->withBody($stream);
83 $this->
http->saveResponse($repsonse);
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
sendString(string $output)
__construct(HTTP\Services $http)
deliverString(string $data, string $filename, string $mime="application/octet-stream")
deliverStream(FileStream $stream, string $filename, string $mime="application/octet-stream")
static ofString(string $string)
Creates a new stream with an initial value.