php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Request #16303 file() MUCH faster than fsockopen() + fgets() but we should be able to set th
Submitted: 2002-03-27 01:55 UTC Modified: 2003-02-06 22:24 UTC
From: jpaulomf at terra dot com dot br Assigned:
Status: Not a bug Package: Feature/Change Request
PHP Version: 4.1.1 OS: Linux
Private report: No CVE-ID: None
View Add Comment Developer Edit
Welcome! If you don't have a Git account, you can't do anything here.
You can add a comment by following this link or if you reported this bug, you can edit this bug over here.
(description)
Block user comment
Status: Assign to:
Package:
Bug Type:
Summary:
From: jpaulomf at terra dot com dot br
New email:
PHP Version: OS:

 

 [2002-03-27 01:55 UTC] jpaulomf at terra dot com dot br
When tring to open a file for remote edition like:

$file = file("http://myaddress.com/users.php?op=xz&f=w");

Whe can't set the headers.
And why one would like to?

1 - Readfile throws the content to std out.
2 - fsockopen takes too much time to do the same:

$sck = fsockopen($host,$port,&$errno,&$errstr);
fputs($sck,$request);
while(!feof($sck)) {
   $result .= fgets($sck,128);
}
This will take about 300-400% more time compared with file() or readfile(). (WHY??? Ive tested the int lenght of fgets() with 2,32,64,128...4096 and it is still very slow: filesizes > 400kb ~ 90-120 sec (@ 256k) when file() does the same in ~ 20-30 sec).

I've not tested cURL yet, but I think PHP should support this w/o 3 parties..

Thanks ppl!


Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2002-03-27 09:23 UTC] wez@php.net
I'm not quite sure what you are asking for here;
could you be more specific?
 [2002-03-28 00:40 UTC] jpaulomf at terra dot com dot br
We should able to set the headers sent by file() and fopen-wrappers when the requests are made to outside, like:

$file = fopen("http://myaddress.com/blah.php?op=po");
 [2002-03-28 00:58 UTC] jpaulomf at terra dot com dot br
AND:

$file = file("http://myqddress.com/foo.htm");
$file = readfile("http://myaddress.com/foo.htm");

and what I told you before was that the other options we have to send our own defined headers(fsockopen) are too slow. 

What I'm asking is to have the ability to set the headers of file(), readfile() and fopen().
 [2003-02-06 22:24 UTC] iliaa@php.net
Try using fread() and a large buffer, something like 20000-50000 bytes. This will reduce the number of PHP operations that occur and probably be much closer file() performance. 
As for your request of adding headers to file(), readfile() and so on it is simple not practical as it would break many existing scripts that rely on the lack of headers.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Fri Mar 29 12:01:27 2024 UTC