Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
--TEST-- Test if dngettext() returns the correct translations (optionally plural). --EXTEN..
Decoded Output download
--TEST--
Test if dngettext() returns the correct translations (optionally plural).
--EXTENSIONS--
gettext
--SKIPIF--
<?php
if (!setlocale(LC_ALL, 'en_US.UTF-8')) {
die("skip en_US.UTF-8 locale not supported.");
}
--FILE--
<?php
chdir(__DIR__);
putenv('LC_ALL=en_US.UTF-8');
setlocale(LC_ALL, 'en_US.UTF-8');
bindtextdomain('dngettextTest', './locale');
var_dump(dngettext('dngettextTest', 'item', 'items', 1));
var_dump(dngettext('dngettextTest', 'item', 'items', 2));
?>
--EXPECT--
string(7) "Produkt"
string(8) "Produkte"
--CREDITS--
Till Klampaeckel, [email protected]
PHP Testfest Berlin 2009-05-09
Did this file decode correctly?
Original Code
--TEST--
Test if dngettext() returns the correct translations (optionally plural).
--EXTENSIONS--
gettext
--SKIPIF--
<?php
if (!setlocale(LC_ALL, 'en_US.UTF-8')) {
die("skip en_US.UTF-8 locale not supported.");
}
--FILE--
<?php
chdir(__DIR__);
putenv('LC_ALL=en_US.UTF-8');
setlocale(LC_ALL, 'en_US.UTF-8');
bindtextdomain('dngettextTest', './locale');
var_dump(dngettext('dngettextTest', 'item', 'items', 1));
var_dump(dngettext('dngettextTest', 'item', 'items', 2));
?>
--EXPECT--
string(7) "Produkt"
string(8) "Produkte"
--CREDITS--
Till Klampaeckel, [email protected]
PHP Testfest Berlin 2009-05-09
Function Calls
None |
Stats
MD5 | 91edddae177b9dac6a5e17dda90c8a8d |
Eval Count | 0 |
Decode Time | 89 ms |