mirror of
https://github.com/php/php-src.git
synced 2024-11-25 02:44:58 +08:00
27 lines
609 B
PHP
27 lines
609 B
PHP
--TEST--
|
|
Test ngettext() functionality
|
|
--SKIPIF--
|
|
<?php
|
|
if (!extension_loaded("gettext")) {
|
|
die("SKIP extension gettext not loaded\n");
|
|
}
|
|
if (!setlocale(LC_ALL, 'en_US.UTF-8')) {
|
|
die("SKIP en_US.UTF-8 locale not supported.");
|
|
}
|
|
?>
|
|
--FILE--
|
|
<?php // $Id$
|
|
chdir(dirname(__FILE__));
|
|
setlocale(LC_ALL, 'en_US.UTF-8');
|
|
bindtextdomain('dngettextTest', './locale');
|
|
textdomain('dngettextTest');
|
|
var_dump(ngettext('item', 'items', 1));
|
|
var_dump(ngettext('item', 'items', 2));
|
|
?>
|
|
--EXPECT--
|
|
string(7) "Produkt"
|
|
string(8) "Produkte"
|
|
--CREDITS--
|
|
Christian Weiske, cweiske@php.net
|
|
PHP Testfest Berlin 2009-05-09
|