Чтобы создать поток из строки, вы можете использовать реализацию Slim в Psr\Http\Message\StreamFactoryInterface
(см. PSR-17: HTTP Factories , или любую другую внешнюю библиотеку, реализующую тот же интерфейс (например, *). 1004 * laminas-diactoros ).
Используя библиотеку Slim, она должна выглядеть примерно так:
<?php
use Slim\Psr7\Response;
use Slim\Psr7\Factory\StreamFactory;
// The string to create a stream from.
$image = $cache->remember($key, null, function () use ($request, $args) {
//...
});
// Create the stream factory.
$streamFactory = new StreamFactory();
// Create a stream from the provided string.
$stream = $streamFactory->createStream($image);
// Create a response.
$response = (new Response())
->withHeader('Content-Type', 'image/png')
->withBody($stream);
// Do whatever with the response.
В качестве альтернативы можно использовать метод StreamFactory::createStreamFromFile
:
<?php
// ...
/*
* Create a stream with read-write access:
*
* 'r+': Open for reading and writing; place the file pointer at the beginning of the file.
* 'b': Force to binary mode.
*/
$stream = $streamFactory->createStreamFromFile('php://temp', 'r+b');
// Write the string to the stream.
$stream->write($image);
// ...