|   | php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
| 
 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits              [2009-07-20 09:42 UTC] jani@php.net
  [2009-07-20 14:55 UTC] jani@php.net
  [2009-07-21 20:45 UTC] srinatar@php.net
  [2009-07-25 22:15 UTC] jani@php.net
  [2009-07-28 12:19 UTC] iliaa@php.net
  [2009-07-28 18:54 UTC] srinatar@php.net
 | |||||||||||||||||||||||||||
|  Copyright © 2001-2025 The PHP Group All rights reserved. | Last updated: Fri Oct 31 18:00:01 2025 UTC | 
Description: ------------ currently, within php tests, the following tests are marked as 'expected failures' curl_copy_handle_basic_002.phpt curl_copy_handle_basic_005.phpt which both does some thing like curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_POSTFIELDS, "Hello=World&Foo=Bar&Person=John%20Doe"); $copy = curl_copy_handle($ch); curl_close($ch); $curl_content_copy = curl_exec($copy); curl_close($copy); var_dump( $curl_content_copy ); Expected result: ---------------- these tests should pass fine. Actual result: -------------- string(163) "array(1) { ["test"]=> string(7) "getpost" }