From:             gubp at pisti dot hu
Operating system: FreeBSD
PHP version:      5.2.8
PHP Bug Type:     cURL related
Bug description:  content-type is not set properly

Description:
------------
Using the cURL to send files with custom content-type (eg.:
"@filename;type=content-type") does not work, because undesirable "type="
string is preprended to the actual content-type.

Reproduce code:
---------------
test.php:
---------

$data = array('file' => '@sheet.xls;type=application/vnd.ms-excel');

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'http://localhost/upload.php');
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
curl_exec($ch);

echo curl_error($ch);


upload.php:
-----------
print_r($_FILES);


Expected result:
----------------
Array
(
    [file] => Array
        (
            [name] => sheet.xls
            [type] => application/vnd.ms-excel
            [tmp_name] => /var/tmp/php21KVfg
            [error] => 0
            [size] => 1192
        )

)


Actual result:
--------------
Array
(
    [file] => Array
        (
            [name] => sheet.xls
            [type] => type=application/vnd.ms-excel
            [tmp_name] => /var/tmp/php21KVfg
            [error] => 0
            [size] => 1192
        )

)


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

Reply via email to