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 有一个内置的 mime_content_type,它为文件和扩展名输入(例如:image.jpg)返回一个 MIME 类型(例如:image/jpeg)。我一直在寻找从 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