ID: 34180 Updated by: [EMAIL PROTECTED] Reported By: ibrash at gmail dot com -Status: Open +Status: Assigned Bug Type: cURL related Operating System: Linux PHP Version: 5.1.0b3 -Assigned To: +Assigned To: pollita New Comment:
Sara, check this out. Previous Comments: ------------------------------------------------------------------------ [2005-08-18 06:38:14] ibrash at gmail dot com Description: ------------ When PHP is compiled with --with-curl --with-curlwrappers, setting the HTTP method to POST in a stream context is disregarded and GET is used instead. This affects both 5.0 and 5.1 and presumably HEAD (haven't checked). Reproduce code: --------------- <?php $opts = array( 'http' => array( 'method' => 'POST', 'header' => "Content-Type: application/x-www-form-urlencoded", 'content' => 'foo=bar' ) ); $context = stream_context_create($opts); readfile ('http://gaernin.aswwc.net/~ibrash/temp/dumprequestinfo.php', false, $context); ?> For reference, dumprequestinfo.php is <?php var_dump($_SERVER['REQUEST_METHOD']); print_r($_POST); ?> Expected result: ---------------- string(4) "POST" Array ( [foo] => "bar" ) Actual result: -------------- string(3) "GET" Array ( ) ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=34180&edit=1