note that this function does not actually use sendfile() on linux systems (at least not in PHP 7.2.12)
(PHP 5, PHP 7, PHP 8)
stream_copy_to_stream — Copia dados de um fluxo para outro
$from
,$to
,$length
= null
,$offset
= 0
Faz uma cópia dos dados com um comprimento em bytes definido em length
,
a partir da posição atual (ou a partir da posição
offset
, se especificada) do fluxo
from
para o fluxo to
. Se
length
for null
, todo o conteúdo remanescente em
from
será copiado.
from
O fluxo de origem
to
O fluxo de destino
length
Máximo de bytes a copiar. Por padrão todos os bytes restantes são copiados.
offset
O deslocamento a partir do qual deve-se começar a copiar os dados
Retorna a contagem total de bytes copiados, ou false
em caso de falha.
Versão | Descrição |
---|---|
8.0.0 |
length agora pode ser nulo.
|
Exemplo #1 Um exemplo de stream_copy_to_stream()
<?php
$src = fopen('http://www.example.com', 'r');
$dest1 = fopen('first1k.txt', 'w');
$dest2 = fopen('remainder.txt', 'w');
echo stream_copy_to_stream($src, $dest1, 1024) . " bytes copiados para first1k.txt\n";
echo stream_copy_to_stream($src, $dest2) . " bytes copiados para remainder.txt\n";
?>
note that this function does not actually use sendfile() on linux systems (at least not in PHP 7.2.12)
stream_copy_to_stream almost copies a stream...
$objInputStream = fopen("php://input", "rb");
$objTempStream = fopen("php://temp", "w+b");
stream_copy_to_stream($objInputStream, $objTempStream);
That code will copy a stream but it will also move the stream pointers to EOF. This is fine if you plan on rewinding the temp stream but good luck rewinding the input stream.
rewind($objTempStream);
rewind($objInputStream);
So as you can see this is stream copy or stream move depending on what kind of stream you are working with, and because there are no peaking functions your effed if you need to read from an input stream in multiple classes that are unrelated.