|
Posted by Mark on 11/24/06 01:21
So, I've got some PHP code that reads in a file and parses some data as
it goes along.
However, now I'm thinking it might be easier for me to store chunks of
the file in the database rather than all the bits of data, so that it
can be interpreted in different ways if need be. But the problem is,
now I can't just use fread to read in two bytes of data, because I've
already got the whole chunk stored in a variable. And I really don't
want to deal with tons of substrings, it would be much easier to have a
sort of file pointer. So is there any way, or any set of functions
that I can use to deal with this?
Navigation:
[Reply to this message]
|