“Imagen de respuesta de PHP” Código de respuesta

Imagen de respuesta de PHP

<?php
$name = './img/ok.png';
$fp = fopen($name, 'rb');

header("Content-Type: image/png");
header("Content-Length: " . filesize($name));

fpassthru($fp);
Annoying Antelope

Imagen de respuesta de PHP

<?php
// open the file in a binary mode
$name = './img/ok.png';
$fp = fopen($name, 'rb');

// send the right headers
header("Content-Type: image/png");
header("Content-Length: " . filesize($name));

// dump the picture and stop the script
fpassthru($fp);
exit;
?>
Annoying Antelope

Respuestas similares a “Imagen de respuesta de PHP”

Preguntas similares a “Imagen de respuesta de PHP”

Más respuestas relacionadas con “Imagen de respuesta de PHP” en PHP

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código