Tagged Questions

1
vote
3answers
163 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
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 ...