From:             programmer at serbiansite dot com
Operating system: Windows + Linux 
PHP version:      5.2.1
PHP Bug Type:     GetImageSize related
Bug description:  getImagesize returns Array for php files

Description:
------------
getimagesize returns Array for php files if you add GIF at beginning of
the file.

Reproduce code:
---------------
phpgif.php

GIF
<?php 
echo "PHP CODE";
?>


test.php
<?
$image = "phpgif.php";
$image_size = getimagesize($image);
echo"<pre>";
print_r($image_size);
echo"</pre>";
?>


Expected result:
----------------
Nothing. Because phpgif.php is not a picture.

Actual result:
--------------
Array
(
    [0] => 28735
    [1] => 28776
    [2] => 1
    [3] => width="28735" height="28776"
    [channels] => 3
    [mime] => image/gif
)



-- 
Edit bug report at http://bugs.php.net/?id=40912&edit=1
-- 
Try a CVS snapshot (PHP 4.4): 
http://bugs.php.net/fix.php?id=40912&r=trysnapshot44
Try a CVS snapshot (PHP 5.2): 
http://bugs.php.net/fix.php?id=40912&r=trysnapshot52
Try a CVS snapshot (PHP 6.0): 
http://bugs.php.net/fix.php?id=40912&r=trysnapshot60
Fixed in CVS:                 http://bugs.php.net/fix.php?id=40912&r=fixedcvs
Fixed in release:             
http://bugs.php.net/fix.php?id=40912&r=alreadyfixed
Need backtrace:               http://bugs.php.net/fix.php?id=40912&r=needtrace
Need Reproduce Script:        http://bugs.php.net/fix.php?id=40912&r=needscript
Try newer version:            http://bugs.php.net/fix.php?id=40912&r=oldversion
Not developer issue:          http://bugs.php.net/fix.php?id=40912&r=support
Expected behavior:            http://bugs.php.net/fix.php?id=40912&r=notwrong
Not enough info:              
http://bugs.php.net/fix.php?id=40912&r=notenoughinfo
Submitted twice:              
http://bugs.php.net/fix.php?id=40912&r=submittedtwice
register_globals:             http://bugs.php.net/fix.php?id=40912&r=globals
PHP 3 support discontinued:   http://bugs.php.net/fix.php?id=40912&r=php3
Daylight Savings:             http://bugs.php.net/fix.php?id=40912&r=dst
IIS Stability:                http://bugs.php.net/fix.php?id=40912&r=isapi
Install GNU Sed:              http://bugs.php.net/fix.php?id=40912&r=gnused
Floating point limitations:   http://bugs.php.net/fix.php?id=40912&r=float
No Zend Extensions:           http://bugs.php.net/fix.php?id=40912&r=nozend
MySQL Configuration Error:    http://bugs.php.net/fix.php?id=40912&r=mysqlcfg

Reply via email to