sundar22in Posted August 30, 2006 Share Posted August 30, 2006 Hi,I want to access a part of file in PHP. I understood HTTP Range header is the solution. How do we implement HTTP Range header in PHP??? Iam using fopen() method to access a remote file by providing the URL.Kindly Help-Sundar Quote Link to comment https://forums.phpfreaks.com/topic/19141-how-to-implement-range-header-in-php/ Share on other sites More sharing options...
ober Posted August 30, 2006 Share Posted August 30, 2006 I'm not sure that is really want you want to do. What exactly do you want to do with the file? Edit it? Write to it?The best way to go about this (especially if you're editing) is to read the entire file into an array and then edit the various array elements and then write the array back to the file. Quote Link to comment https://forums.phpfreaks.com/topic/19141-how-to-implement-range-header-in-php/#findComment-82792 Share on other sites More sharing options...
sundar22in Posted August 30, 2006 Author Share Posted August 30, 2006 [quote author=ober link=topic=106239.msg424646#msg424646 date=1156944642]I'm not sure that is really want you want to do. What exactly do you want to do with the file? Edit it? Write to it?The best way to go about this (especially if you're editing) is to read the entire file into an array and then edit the various array elements and then write the array back to the file.[/quote]No Im not editing the file. Instead i need only a part of file which has the information which i require. The file size is very large(10+ MB). So we need to specify the byte range, and get the required bytes from the file(Instead of getting the whole file).Thanks in advance-Sundar Quote Link to comment https://forums.phpfreaks.com/topic/19141-how-to-implement-range-header-in-php/#findComment-82805 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.