I am trying to backup 5.9gbyte files in php. But my code is memory limit. file_get_contents function is not reading big file such as 3G, 5G zip file. So i have memory error. So i tried to split file
enter code here
$in = @fopen($file, "r");
$path = str_replace($source . '/', '', $file);
while ($buff = fread($in, 4096)) {
$zip->addFromString($path, $buff);
}
But this is error about backup of big file when create zip file from big file directory. Thanks.