Hello please how i can fix this error ?
Fatal error: Allowed memory size of 25165824 bytes exhausted
The problem I encounter is when I try to get a content of a big file from a website
my official code is :
<?php
//begin
$ch = curl_init();
curl_setopt($ch, CURLOPT_BUFFERSIZE, 8096);
curl_setopt($ch, CURLOPT_BINARYTRANSFER, true);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_URL, 'http://softnet.co.tz/cms/scripts/here.txt');
$content = curl_exec($ch);
curl_close($ch);
$out = fopen('result.txt', 'a');
if ($out) {
fwrite($out, $content);
fclose($out);
}
?>
i've already read some stuff but didn't get it solved. please help me.