ID: 11908
Updated by: sterling
Reported By: [EMAIL PROTECTED]
Old Status: Open
Status: Closed
Bug Type: cURL related
Operating System: i686-pc-linux-gnu
PHP Version: 4.0 Latest CVS (2001-07-05)
New Comment:
close, sorry guys, its been awhile.
Previous Comments:
------------------------------------------------------------------------
[2001-07-30 17:07:44] [EMAIL PROTECTED]
CURLOPT_BINARYTRANSFER is only for use with
CURLOPT_RETURNTRANSFER.
------------------------------------------------------------------------
[2001-07-05 10:36:13] [EMAIL PROTECTED]
Hi,
the code:
----
$ch = curl_init ("http://www.php.net/");
$fp = fopen ("php_homepage.txt", "w");
for ($str["field1"]="",$i=0;$i<256;$i++,$str["field1"].=chr($i)){}
curl_setopt ($ch, CURLOPT_POSTFIELDS, $str);
curl_setopt ($ch, CURLOPT_FILE, $fp);
curl_setopt ($ch, CURLOPT_HEADER, 1);
//curl_setopt ($ch, CURLOPT_BINARYTRANSFER, 1);
curl_exec ($ch);
curl_close ($ch);
fclose ($fp);
-----
are not binary safe.
if the CURLOPT_BINARYTRANSFER set to "1",
cURL results:
"Warning: Cannot call the CURLOPT_WRITEFUNCTION"
Regards,
--
Steve
------------------------------------------------------------------------
Edit this bug report at http://bugs.php.net/?id=11908&edit=1
--
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]