Z3RO (30.07.2011/07:20)
Провел отладку и обнаружил, что проблема в цыкле.
Вот этот код:
$countFormats = count($possibleImgFormats);
for($i = 0; $i < $countFormats; ++$i)
{
echo $possibleImgFormats[$i] . ' ';
if(file_exists($_SERVER['DOCUMENT_ROOT'] . '/files/avatars/' . $this->id . '/' . $this->size . '.' . $possibleImgFormats[$i]))
{
$format = $possibleImgFormats[$i];
}
else
echo 'error!
';
}