PHP Parse error: syntax error, unexpected '{' in /system/core/core.php on line 308
Parse error: syntax error, unexpected '{' in /system/core/core.php on line 308
В 308 строке
} finally {
/** * Возвращает объект модели из указанного файла (без расширения) * @param string $controller Контроллер модели * @param string $delimitter Разделитель слов в названии класса */ public static function getModel($controller, $delimitter='_'){ } $model_class = 'model' . string_to_camel($delimitter, $controller); try { $model = new $model_class(); } catch (Exception $e) { self::error(ERR_MODEL_NOT_FOUND . ': '.$e->getMessage()); } finally { } }