php-src/ext/gettext/gettext.stub.php
Christoph M. Becker d319098b24 Fix #53251: bindtextdomain with null dir doesn't return old value
Apparently, users expect `bindtextdomain` and `bind_textdomain_codeset`
with `null` as second argument to work like their C counterparts,
namely to return the previously set value.  Thus, we support that.

Closes GH-6631.
2021-01-25 15:44:14 +01:00

33 lines
911 B
PHP

<?php
/** @generate-function-entries */
function textdomain(?string $domain): string {}
function gettext(string $message): string {}
/** @alias gettext */
function _(string $message): string {}
function dgettext(string $domain, string $message): string {}
function dcgettext(string $domain, string $message, int $category): string {}
function bindtextdomain(string $domain, ?string $directory): string|false {}
#ifdef HAVE_NGETTEXT
function ngettext(string $singular, string $plural, int $count): string {}
#endif
#ifdef HAVE_DNGETTEXT
function dngettext(string $domain, string $singular, string $plural, int $count): string {}
#endif
#ifdef HAVE_DCNGETTEXT
function dcngettext(string $domain, string $singular, string $plural, int $count, int $category): string {}
#endif
#ifdef HAVE_BIND_TEXTDOMAIN_CODESET
function bind_textdomain_codeset(string $domain, ?string $codeset): string|false {}
#endif