我有问题。 在我的PHP代码中,我想检查上传的文件是否具有类似于其mime类型的扩展名:
for image.png:
if this extension (.png) is associated to the png mime type( image/png )
upload is authorised.
if this extension (.png) is not associated to the png mime type, (ex : text/html)
upload is not authorised.
我知道我们可以在HTTP Request上修改文件的类型mime(在文件的标题上)。但是,对于我的测试,我需要创建一个mime类型与其扩展名不同的文件。
你知道我想要创建这个文件吗? (" image.png"使用" application / octet-stream" mime类型)。
在Windows上,当我更改文件的扩展名时,这也改变了mime类型......
我找到了一个用于创建文件的页面,其中包含" Appcmd.exe"在Windows上,但这个软件不存在于我的电脑上......