Neos\Flow\I18n\Parser\DatetimeParser::doParsingWithParsedFormat PHP Метод

doParsingWithParsedFormat() защищенный Метод

Parses date and / or time using parsed format, in strict or lenient mode.
protected doParsingWithParsedFormat ( string $datetimeToParse, array $parsedFormat, array $localizedLiterals, boolean $strictMode ) : mixed
$datetimeToParse string Date/time to be parsed
$parsedFormat array Parsed format (from DatesReader)
$localizedLiterals array Array of date / time literals from CLDR
$strictMode boolean Work mode (strict when TRUE, lenient when FALSE)
Результат mixed Array of parsed date and / or time elements, FALSE on failure
    protected function doParsingWithParsedFormat($datetimeToParse, array $parsedFormat, array $localizedLiterals, $strictMode)
    {
        return $strictMode ? $this->doParsingInStrictMode($datetimeToParse, $parsedFormat, $localizedLiterals) : $this->doParsingInLenientMode($datetimeToParse, $parsedFormat, $localizedLiterals);
    }