|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2019-05-08 09:11 UTC] spam2 at rhsoft dot net
[2019-05-08 09:18 UTC] peter279k at gmail dot com
[2019-05-08 09:21 UTC] spam2 at rhsoft dot net
[2019-05-08 09:28 UTC] peter279k at gmail dot com
[2019-05-08 09:30 UTC] spam2 at rhsoft dot net
[2019-05-08 09:32 UTC] cmb@php.net
-Status: Open
+Status: Not a bug
-Package: Output Control
+Package: GetImageSize related
-Assigned To:
+Assigned To: cmb
[2019-05-08 09:32 UTC] cmb@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Nov 01 09:00:01 2025 UTC |
Description: ------------ The getimagesize function mime result should be enhanced. The mime content type should be image/x-ms-bmp, not image/bmp. Test script: --------------- <?php echo mime_content_type('php.bmp') . "\n"; echo getimagesize('php.bmp')['mime'] . "\n"; Expected result: ---------------- image/x-ms-bmp image/x-ms-bmp Actual result: -------------- image/x-ms-bmp image/bmp