我使用此代码获取mime类型的远程文件:
from distutils.core import setup
import py2exe
setup(
windows=[{'script': 'AutoFormatter.py'}],
options={
'py2exe':
{
'includes': ['lxml.etree', 'lxml._elementpath', 'gzip', 'docx'],
}
}
)
然后检查// check MIME Type
$file_info = new finfo(FILEINFO_MIME);
$mime_type = $file_info->buffer( file_get_contents( $source ) );
是否包含字符串' text / css'确保文件是CSS。
但是,我还没有找到一个使用正确文本/ css' mime类型为其CSS文件。大多数人似乎是&text; / text'或' text / x-c ++'。
有没有更好的方法来确保远程文件是CSS?