PHP komut dosyası yolunu alma ile doğrudan sunucudan görüntüleri Porsiyon

0 Cevap php

Çoğunuz muhtemelen bildiğiniz gibi, biz bu gibi yapıları kullanarak PHP görüntüleri hizmet edebilir:

RewriteRule ^images/([a-zA-Z0-9]+)\.jpg script.php?image=$1

Ve sonra PHP:

header('Content-Type: image/png');
$image=imagecreatefromjpeg($pathComputedSomewhereElse);
imagejpeg($image);

Bu ölü basit, ama bu benim sorunum değil - ben sadece sizi şaşırtmak istemiyorum.

My question is:

Nasıl I, eğer mümkünse, serve such image directly, using PHP only to fetch image path? Ben dosyayı okuduktan ve ikili akışı gibi veri çıktısı PHP değil, Apache işi yapmak istiyorum. [. Aynı htaccess] aşağıdaki gibi prototip biçimlendirme olacaktır:

header('Content-Type: image/png');
header('Location: '.$pathComputedSomewhereElse);

0 Cevap