Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
画像ファイルのレンダリングに関して、私のオプションは何ですか?foo/bar.pngに保存したとしましょう
readfile()現在、私はまだそれ以上を使用できることを知っていますX-Sendfile(私はApacheを使用しています)。使用するよりも優れている他の方法は何readfile()ですか?
readfile()
X-Sendfile
画像をブラウザに出力したい(Content-Type:image / png)
最善の解決策は、Web サーバー (Apache) がコンテンツ自体を提供できるようにすることです。代わりに PHP を使用する必要がある場合は、最初に Content-Type が適切な値に設定されていることを確認するだけです。
header("Content-type: image/png");
次にreadfile()、画像自体を送信するために使用します。