【PHP】file()、file_get_contents()、スピードテスト。

実験コード

■file()

implode('', file('/path/to/file.ext'));

■file_get_contents()

file_get_contents('/path/to/file.ext');

50%近くfile_get_contents()の方が速い。