Whenever I try to open files larger than 8 mb in php, I get an eooro saying that I can't have more than 8 Mb in memory. I'm trying to copy a file from a [url]http://[/url] location using the code below.
$filez = fopen ($from_file, "r");
$fd = fopen($to_file, "w");
while (!feof ($filez)) {
$bf=fread($filez, 4096);
fputs($fd, $bf);
}
fclose($filez);
fclose($fd);
Please help me, or point me in the right direction. Thank you.