Прохождение автризации

This commit is contained in:
CORP\phedor 2018-04-23 11:18:53 +03:00
parent aaa9c2e1bf
commit c2b9254fd0
9 changed files with 16 additions and 14 deletions

View file

@ -5,7 +5,7 @@ use Exception;
class File {
static function getContents($filename) {
$buffer = file_get_contents($filename);
$buffer = @file_get_contents($filename);
if ($buffer !== false) {
return $buffer;
}