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.
PHP には、ファイルと拡張子入力 (例: image.jpg) の MIME タイプ (例: image/jpeg) を返す mime_content_type が組み込まれています。MIME タイプから拡張子への関数を探しましたが、存在しないと思います。
そうですか?そうでない場合、「image/jpeg」から「.jpg」または「image/png」から「.png」、またはその効果を得る簡単な方法はありますか?
ありがとう!
このようなもの?:
<?php function MIME($mime) { $list = explode("/",$mime); return ".".$list[1]; } $my_mime = "image/jpeg"; $type = MIME($my_mime); echo $type; ?>
必要に応じて私のコードを改善できます.....私はそれが役立つことを願っています;) .....saludos