You are here

private function JsonFileLoader::getJSONErrorMessage in Plug 7

Translates JSON_ERROR_* constant into meaningful message.

Parameters

int $errorCode Error code returned by json_last_error() call:

Return value

string Message string

1 call to JsonFileLoader::getJSONErrorMessage()
JsonFileLoader::loadResource in lib/Symfony/translation/Loader/JsonFileLoader.php

File

lib/Symfony/translation/Loader/JsonFileLoader.php, line 47

Class

JsonFileLoader
JsonFileLoader loads translations from an json file.

Namespace

Symfony\Component\Translation\Loader

Code

private function getJSONErrorMessage($errorCode) {
  switch ($errorCode) {
    case JSON_ERROR_DEPTH:
      return 'Maximum stack depth exceeded';
    case JSON_ERROR_STATE_MISMATCH:
      return 'Underflow or the modes mismatch';
    case JSON_ERROR_CTRL_CHAR:
      return 'Unexpected control character found';
    case JSON_ERROR_SYNTAX:
      return 'Syntax error, malformed JSON';
    case JSON_ERROR_UTF8:
      return 'Malformed UTF-8 characters, possibly incorrectly encoded';
    default:
      return 'Unknown error';
  }
}