Здравствуйте, подскажите, из-за чего функция file_exists() которая является стандартной в php показывает при проверке о существовании файла, что его нет, хотя файл указан. Вот код Код (Text): $file = 'test.pdf'; if (file_exists($file)) { header('Content-type: application/pdf'); header('Content-Discription: inline; filename="'.$file.'"'); header('Content-Transfer-Encoding: binary'); header('Accept-Ranges: bytes'); @readfile($file); } else { echo "not found file"; }