|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2011-05-30 14:40 UTC] iliaa@php.net
-Status: Open
+Status: Bogus
[2011-05-30 14:40 UTC] iliaa@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Oct 27 11:00:01 2025 UTC |
Description: ------------ Finfo extention detects invalid mime type for webm video format. "application/octet-stream; charset=binary" instead of "video/webm" Test script: --------------- <?php $f = new finfo(); echo $f->file('MyVideo.webm',FILEINFO_MIME); // outputs "application/octet-stream; charset=binary" but should be "video/webm" Expected result: ---------------- video/webm Actual result: -------------- application/octet-stream; charset=binary