php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #45431 getimagesize() can't handle a colon in filename parameter
Submitted: 2008-07-04 13:38 UTC Modified: 2008-07-05 00:23 UTC
From: hundrambit at gmail dot com Assigned:
Status: Closed Package: GetImageSize related
PHP Version: 5.2.6 OS: Windows XP Professional + SP3
Private report: No CVE-ID: None
View Add Comment Developer Edit
Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know!
Just going to say 'Me too!'? Don't clutter the database with that please !
Your email address:
MUST BE VALID
Solve the problem:
26 + 4 = ?
Subscribe to this entry?

 
 [2008-07-04 13:38 UTC] hundrambit at gmail dot com
Description:
------------
getimagesize() function will return FALSE when a remote file containing a colon (:) in filename is specified. It can't be handled / opened.

This image is used as example: http://inattack.ru/bar/inattack_bar_2012_2:10_FFFFFF_5_0.jpg

PHP configuration allows remote files.

Reproduce code:
---------------
$res = @getimagesize("http://inattack.ru/bar/inattack_bar_2012_2:10_FFFFFF_5_0.jpg");

if ($res === false) {
echo "Failed to open target image.";
} else {
echo "WxH: ".$res[0]."x".$res[1];
}

Expected result:
----------------
$res should return array with 5 elements, as it does when same image without a colon in filename is specified.

Actual result:
--------------
A FALSE is returned.

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2008-07-05 00:23 UTC] hundrambit at gmail dot com
This information is invalid.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Sat Apr 20 01:01:28 2024 UTC