首页
学习
活动
专区
工具
TVP
发布
精选内容/技术社群/优惠产品,尽在小程序
立即前往

ngettext

(PHP 4 >= 4.2.0, PHP 5, PHP 7)

ngettext - 多个版本的gettext

描述

代码语言:javascript
复制
string ngettext ( string $msgid1 , string $msgid2 , int $n )

gettext()的复数形式。一些语言根据计数具有多于一种形式的复数消息。

参数

msgid1

单个消息ID。

msgid2

多个消息ID。

n

数字(例如项目数量)来确定相应语法编号的翻译。

返回值

返回由count msgid1msgid2count 标识的正确的复数形式的消息n

例子

示例#1 ngettext()示例

代码语言:javascript
复制
<?php

setlocale(LC_ALL, 'cs_CZ');
printf(ngettext("%d window", "%d windows", 1), 1); // 1 okno
printf(ngettext("%d window", "%d windows", 2), 2); // 2 okna
printf(ngettext("%d window", "%d windows", 5), 5); // 5 oken

?>

← gettext

textdomain →

扫码关注腾讯云开发者

领取腾讯云代金券