php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #10860 final char deleted with CURLOPT_RETURNTRANSFER
Submitted: 2001-05-14 16:17 UTC Modified: 2001-05-14 17:08 UTC
From: sr2899 at hotmail dot com Assigned:
Status: Closed Package: cURL related
PHP Version: 4.0.4pl1 OS: Linux
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: sr2899 at hotmail dot com
New email:
PHP Version: OS:

 

 [2001-05-14 16:17 UTC] sr2899 at hotmail dot com
I noticed a while ago that CURLOPT_RETURNTRANSFER added trailing null chars to the end of html pages, which seemed odd, but didn't seem like a bug.  Then I noticed that on binary files, in fact what it does is REPLACE the trailing char with a null char.

Oddly, setting CURLOPT_HEADER to 1 seems to fix the problem.

<?
		$f = fopen('/tmp/bla1','w');
		$ch = curl_init();
		curl_setopt($ch, CURLOPT_URL,"http://www.php.net/gifs/small_submit.gif");
		curl_setopt($ch, CURLOPT_FILE,$f);
		curl_exec($ch);
		curl_close($ch);
		rewind($f);
		fclose($f);

		$ch = curl_init();
		curl_setopt($ch, CURLOPT_URL,"http://www.php.net/gifs/small_submit.gif");
		curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
		$ret = curl_exec($ch);
		curl_close($ch);

		$f = fopen('/tmp/bla2','w');
		$ret = fwrite($f,$ret,strlen($ret));
		fclose($f);
		
		system('diff /tmp/bla2 /tmp/bla1');
?>

Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2001-05-14 17:08 UTC] derick@php.net
Should be fixed in CVS (by Sterling):

Try the latest cvs of cURL and set the CURLOPT_BINARYTRANSFER option
along with the CURLOPT_RETURNTRANSFER option.

please reopen if this does not work.

Derick
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Nov 28 09:01:28 2024 UTC