php / php/php-src

http context - allow content to be a stream/resource

Abierto
#19,249 1 comentario 0 reacciones 1 asignado Ver en GitHub

@ndossche ya está trabajando en esto.

Desde el 27/7/2025.

  • #19267 de @ndossche — abierto
Category: Streams Feature Status: Verified
Lenguaje dominante
C
Estrellas
40.4k
Forks
8.2k
Merge medio
2 d 13 h
PR fusionados (30 d)
96

Descripción

Description

I am using file_get_contents with a HTTP context to POST a large request to a URL (https://www.php.net/manual/en/context.http.php). I noticed that the content field has to be a string:

<?php
$post_data = file_get_contents('data_to_send.txt');

file_get_contents('https://test.com/test.php', false, stream_context_create(array(
    'http' => array(
        'method' => 'POST',
        'header'  => array(
        	'Content-type: multipart/form-data',
        ),
        'content' => $post_data,
    )
)));
?>

Would it be possible to allow content to be a stream/resource so that I don't have to read in the file contents first? This would be similar to CURLOPT_INFILE which accepts a file handle resource like fopen.

The reason I'm trying to send data this way and not with curl is because of #15859. I'm trying to build my own multipart/form-data request per my comment there, as I'm connecting to an API that needs multiple files with the same name.

Thanks for your help.

Guía de contribución

Abrir la guía de contribución

Primeros pasos

  1. Lee el issue completo y luego la guía de contribución del proyecto.
  2. Comenta en el issue que vas a ocuparte — evita que dos personas hagan lo mismo.
  3. Haz un fork del repositorio y trabaja en una rama.
  4. Abre un pull request que haga referencia al número del issue.

Evaluación

Este issue todavía no se ha evaluado.

Recibe los nuevos issues en tu correo

Un resumen breve de issues de GitHub para principiantes.