“PHP -Antwortbild” Code-Antworten

PHP -Antwortbild

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

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

fpassthru($fp);
Annoying Antelope

PHP -Antwortbild

<?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

Ähnliche Antworten wie “PHP -Antwortbild”

Fragen ähnlich wie “PHP -Antwortbild”

Weitere verwandte Antworten zu “PHP -Antwortbild” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen