Tagged Questions
2
votes
2answers
317 views
PHP appending to file from specific position
In php i am opening a text file and appending to it. However I need to append 3 chars before the end of file.
In other words i need to append/write from a specific place in the file.
Can any one ...
2
votes
1answer
240 views
how to read a video file placed at server in php - video file's name includes http wrapper
I am using the following code but there appears to be warning with fseek and returns -1 instead of 0.
$file = fopen("http://www.example.com/public_html/data/video/temp.mov", "r") or exit("unable to ...
2
votes
4answers
1k views
Read a file backwards line by line using fseek
How do I read a file backwards line by line using fseek?
code can be helpful. must be cross platform and pure php.
many thanks in advance
regards
Jera
1
vote
3answers
162 views
how to rewind() an http stream file in PHP other than fclose() and fopen() again?
PHP's fopen lets you fopen() http locations as file streams.
But you can't fseek() or rewind() them, is there a way to accomplish this other than fclose() and fopen() it again?
0
votes
1answer
74 views
Streaming video content from RAR archives
I'm trying to stream video content from a RAR archive.
and it goes fine for the first seconds, but the problem is that the stream does not support fseek, so the client can't ask for more data, or ...
0
votes
1answer
100 views
fseek, ftell, reading a big file [closed]
Possible Duplicate:
Getting one line in a huge file with PHP
Reading a specific line from a text file
I have a huge file in which I want to view on the web.
I want for the last 100 lines ...
0
votes
2answers
56 views
PHP fseek with remote files
I want to read remote file from the end but fseek doesn't support remote files. Is there way to make this?
0
votes
0answers
542 views
optimal way to prepend a file in php
how do I do this.
the file can get very big, so good performance is necessary
code is helpful.
this is what i have so far
function prepend($string, $filename) {
$context = ...
0
votes
3answers
585 views
PHP fseek() equivalent for variables?
What I need is an equivalent for PHP's fseek() function. The function works on files, but I have a variable that contains binary data and I want to work on it. I know I could use substr(), but that ...