iconv_mime_decode

(PHP 5, PHP 7) Decodes a MIME header field string iconv_mime_decode ( string $encoded_header [, int $mode = 0 [, string $charset = ini_get("iconv.internal_encoding") ]] ) Decodes a MIME header field. Parameters: encoded_header The encoded header, as a string. mode mode determines the behaviour in the event iconv_mime_decode() encounte

iconv_mime_decode_headers

(PHP 5, PHP 7) Decodes multiple MIME header fields at once array iconv_mime_decode_headers ( string $encoded_headers [, int $mode = 0 [, string $charset = ini_get("iconv.internal_encoding") ]] ) Decodes multiple MIME header fields at once. Parameters: encoded_headers The encoded headers, as a string. mode mode determines the behaviour

iconv_get_encoding

(PHP 4 >= 4.0.5, PHP 5, PHP 7) Retrieve internal configuration variables of iconv extension mixed iconv_get_encoding ([ string $type = "all" ] ) Retrieve internal configuration variables of iconv extension. Parameters: type The value of the optional type can be: all input_encoding output_encoding internal_encoding Returns: Returns the current value of the int

textdomain

(PHP 4, PHP 5, PHP 7) Sets the default domain string textdomain ( string $text_domain ) This function sets the domain to search within when calls are made to gettext(), usually the named after an application. Parameters: text_domain The new message domain, or NULL to get the current setting without changing it Returns: If successful, this functio

ngettext

(PHP 4 >= 4.2.0, PHP 5, PHP 7) Plural version of gettext string ngettext ( string $msgid1, string $msgid2, int $n ) The plural version of gettext(). Some languages have more than one form for plural messages dependent on the count. Parameters: msgid1 The singular message ID. msgid2 The plural message ID. n

gettext

(PHP 4, PHP 5, PHP 7) Lookup a message in the current domain string gettext ( string $message ) Looks up a message in the current domain. Parameters: message The message being translated. Returns: Returns a translated string if one is found in the translation table, or the submitted message if not found. Notes

dngettext

(PHP 4 >= 4.2.0, PHP 5, PHP 7) Plural version of dgettext string dngettext ( string $domain, string $msgid1, string $msgid2, int $n ) The dngettext() function allows you to override the current domain for a single plural message lookup. Parameters: domain The domain msgid1 The domain msgid2 The dom

dgettext

(PHP 4, PHP 5, PHP 7) Override the current domain string dgettext ( string $domain, string $message ) The dgettext() function allows you to override the current domain for a single message lookup. Parameters: domain The domain message The message Returns: A string on success.

dcngettext

(PHP 4 >= 4.2.0, PHP 5, PHP 7) Plural version of dcgettext string dcngettext ( string $domain, string $msgid1, string $msgid2, int $n, int $category ) This function allows you to override the current domain for a single plural message lookup. Parameters: domain The domain msgid1 The domain msgid2 T

dcgettext

(PHP 4, PHP 5, PHP 7) Overrides the domain for a single lookup string dcgettext ( string $domain, string $message, int $category ) This function allows you to override the current domain for a single message lookup. Parameters: domain The domain message The message category The category