Skip to content

Instantly share code, notes, and snippets.

@nokimaro
Created November 9, 2013 14:43
Show Gist options
  • Save nokimaro/7386191 to your computer and use it in GitHub Desktop.
Save nokimaro/7386191 to your computer and use it in GitHub Desktop.
PHP read big file without memory limit error
<?php
$fp = fopen($cuts_list_file, 'rb');
while(!feof($fp))
{
$line = fgets($fp); //fgets reads one line at a time
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment