Quote Originally Posted by GAMEchief View Post
Cool.

Why did you do this?
$Cache = file($this->CacheFile);
return implode('', $Cache);

Wouldn't that fuck up files that have line-breaks?

I'm thinking it should be return file_get_contents($this->CacheFile);
My testing shows that the implosion method returns the same data faster.

All it does is take the file array and put it into one code.

I'm not sure if it removes line-breaks but if I remember correctly it does not.