|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2002-02-27 14:11 UTC] sander@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Oct 27 19:00:02 2025 UTC |
$x=GetImageSize("/some/dir"); In versions of PHP 4.0 and lower if the object of GetImageSize it would not report an error. Just upgraded to 4.1.1 and now GetImageSize reports an error if the object is just a directory and not a file. Adding @GetImageSize takes care of the error. The reason I am bothering to write this bug report is that when I was trying to solve the problem I did a search at Google and saw that hundreds of pages on the net have this same problem, most likely many of them as a result of upgrading. In fact, this is not a bug. GetImageSize is reporting an error if it can't find the file. Unfortunately it's earlier behavior allowed people to be lazy using this function. They could use an object composed of variables, one being a directory and another a file. If both are met, the size array is returned, if not, nothing. But now, if not mean big "Read Error". Russ McClay