1--TEST--
2dcgettext with LC_ALL is undefined behavior.
3--EXTENSIONS--
4gettext
5--FILE--
6<?php
7var_dump(dcgettext('dngettextTest', 'item', LC_ALL));
8var_dump(dcngettext('dngettextTest', 'item', 'item2', 1, LC_ALL));
9?>
10--EXPECT--
11string(4) "item"
12string(4) "item"
13