IntlDateFormatter::getTimeType()

string getTimeType() Returns the formatter's time type. Return Value string The time type used by the formatter See also http://www.php.net/manual/en/intldateformatter.gettimetype.php

IntlDateFormatter::getPattern()

string getPattern() Returns the formatter's pattern. Return Value string The pattern string used by the formatter See also http://www.php.net/manual/en/intldateformatter.getpattern.php

IntlDateFormatter::getLocale()

string getLocale(int $type = Locale::ACTUAL_LOCALE) Returns the formatter's locale. Parameters int $type Not supported. The locale name type to return (Locale::VALIDLOCALE or Locale::ACTUALLOCALE) Return Value string The locale used to create the formatter. Currently always returns "en". See also http://www.php.net/manual/en/intldateformatter.getlocale.php

IntlDateFormatter::getErrorMessage()

string getErrorMessage() Returns formatter's last error message. Always returns the UZEROERROR_MESSAGE class constant value. Return Value string The error message from last formatter call See also http://www.php.net/manual/en/intldateformatter.geterrormessage.php

IntlDateFormatter::getErrorCode()

int getErrorCode() Returns formatter's last error code. Always returns the UZEROERROR class constant value. Return Value int The error code from last formatter call See also http://www.php.net/manual/en/intldateformatter.geterrorcode.php

IntlDateFormatter::getDateType()

int getDateType() Returns the formatter's datetype. Return Value int The current value of the formatter See also http://www.php.net/manual/en/intldateformatter.getdatetype.php

IntlDateFormatter::getCalendarObject()

object getCalendarObject() Not supported. Returns the formatter's calendar object. Return Value object The calendar's object being used by the formatter Exceptions MethodNotImplementedException See also http://www.php.net/manual/en/intldateformatter.getcalendarobject.php

IntlDateFormatter::getCalendar()

int getCalendar() Returns the formatter's calendar. Return Value int The calendar being used by the formatter. Currently always returns IntlDateFormatter::GREGORIAN. See also http://www.php.net/manual/en/intldateformatter.getcalendar.php

IntlDateFormatter::formatObject()

string formatObject(object $object, mixed $format = null, string $locale = null) Not supported. Formats an object. Parameters object $object mixed $format string $locale Return Value string The formatted value Exceptions MethodNotImplementedException See also http://www.php.net/manual/en/intldateformatter.formatobject.php

IntlDateFormatter::format()

string|bool format(int|DateTime $timestamp) Format the date/time value (timestamp) as a string. Parameters int|DateTime $timestamp The timestamp to format Return Value string|bool The formatted value or false if formatting failed Exceptions MethodArgumentValueNotImplementedException If one of the formatting characters is not implemented See also http://www.php.net/manual/en/intldateformatter.format.php