|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2002-08-03 09:18 UTC] helly@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Nov 20 18:00:01 2025 UTC |
When testing getimagesize with php 4.2.2 I get these results: ( [0] => 194 [1] => 54 [2] => 1 [3] => width="194" height="54" ) Array ( [0] => 280 [1] => 231 [2] => 2 [3] => width="280" height="231" [bits] => 8 [channels] => 3 ) With PHP 4.3.0-dev I get these results: Array ( [0] => 194 [1] => 54 [2] => 1 [3] => width="194" height="54" [bits] => 8 [channels] => 3 [mime] => image/gif ) Array ( [0] => 280 [1] => 231 [2] => 2 [3] => width="280" height="231" [bits] => 8 [channels] => 3 [mime] => image/jpeg ) If this an expected result, it should be documented. If 4.2.0 simply has a bug consider it as closed ;)