2020
09-30
09-30
PHP实现获取文件mime类型多种方法解析
本文实例讲述了php获取文件mime类型的方法。分享给大家供大家参考。具体如下:1.使用mime_content_type方法stringmime_content_type(string$filename)ReturnstheMIMEcontenttypeforafileasdeterminedbyusinginformationfromthemagic.mimefile.<?php$mime_type=mime_content_type('1.jpg');echo$mime_type;//image/jpeg?>但此方法在php5.3以上就被废弃了,官方建议使用fileinfo方法代替...
继续阅读 >