From:             
Operating system: Linux
PHP version:      5.3.8
Package:          cURL related
Bug Type:         Bug
Bug description:CURLOPT_POSTFIELDS Ignores Numeric Field Names

Description:
------------
If you use a numeric array key to represent a numeric field name, cURL will
ignore the field completely when submitting the POST.

For example, suppose you have an HTML form containing a field named
'somefield' and another field named '100'. We want to simulate submitting
this form using cURL:

When the script below is executed, cURL will submit the form and pass the
'somefield' data, but will completely ignore the '100' data in the form
post.

$ch = curl_init('http://www.someurl.com');
curl_setopt($ch, CURLOPT_POST, 1);
$fields['somefield'] = 'Some Data';
$fields['100'] = 'Some Other Data';
curl_setopt($ch, CURLOPT_POSTFIELDS, $fields);
$output = curl_exec($ch);

Test script:
---------------
$ch = curl_init('http://www.someurl.com');
curl_setopt($ch, CURLOPT_POST, 1);
$fields['somefield'] = 'Some Data';
$fields['100'] = 'Some Other Data';
curl_setopt($ch, CURLOPT_POSTFIELDS, $fields);
$output = curl_exec($ch);


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

Reply via email to