
May 7th, 2006, 14:47
|
|
New Member
|
|
Join Date: May 2006
Age: 16
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
|
Re: Question on files
Quote:
|
Originally Posted by ktsirig
Hi,
I am using PHP to make a website related to biology. In this site I use PHP code to communicate with external programms (not in PHP, but some biological packages). These programms write their output in temporary files, which I then read using fread() or file_get_contents() functions.
My problem is that these functions seem to have a restriction as to the size of the file that they can read. Is there any other way I read big files (for files close to 20-30MBs for example)?
Please note that there is no other way for me to do this because these programs, by default, write their output to a text file, so I can't use PHP's system commands and read the output on the fly. The output file is first created and then I read it into a string and parse it according to what I need.
|
Would the include() function work better in this case? If your trying to insert it, wouldn't that be better.
|