I was wondering if anyone could tell me which of these methods for loading data from a text file is more efficient?
$text = implode("", file("$filename"));
$text = fread(fopen($filename, "r"), filesize($filename));
Just curious, thanks.
-Justin Plock
http://plock.net