Your IP : 216.73.216.48


Current Path : /hdd/hdd21/main/php5/php-5.6.6/ext/gettext/tests/
Upload File :
Current File : //hdd/hdd21/main/php5/php-5.6.6/ext/gettext/tests/gettext_ngettext.phpt

--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