I am trying to read a large file (10M) using php file_get_contents
$file = 'http://www.remoteserver.com/test.txt';
$data = file_get_contents( $file );
var_dump ( $data );
It dumps back
string(32720)
and then the output with only showing part of the file. Is there a limit somewhere of file_get_contents? I tried doing ini_set('memory_limit', '512M'), but that did not work.
EDIT: ** forgot to mention ** it's a remote file.
PROBLEM RESOLVED:: Out of HDD space. Fixed that and now everything works.