ngettext

PHP 4 >= 4.2.0, PHP 5, PHP 7, PHP 8
ngettext - Plural version of gettext
Manual
Code Examples

ngettext( string$singular, string$plural, int$count ): string

The plural version of gettext. Some languages have more than one form for plural messages dependent on the count.

Parameters

singular

The singular message ID.

plural

The plural message ID.

count

The number (e.g. item count) to determine the translation for the respective grammatical number.

Return Values

Returns correct plural form of message identified by singular and plural for count count.

Example of ngettext

Show all examples for ngettext

PHP Version:


Function ngettext:

Gettext Functions

Most used PHP functions