1--TEST-- 2Check if textdomain() returns the new domain 3--EXTENSIONS-- 4gettext 5--SKIPIF-- 6<?php 7 8 if (!setlocale(LC_ALL, 'en_US.UTF-8')) { 9 die("skip en_US.UTF-8 locale not supported."); 10 } 11?> 12--FILE-- 13<?php 14 15chdir(__DIR__); 16setlocale(LC_ALL, 'en_US.UTF-8'); 17bindtextdomain ("messages", "./locale"); 18echo textdomain('test'), "\n"; 19echo textdomain(null), "\n"; 20echo textdomain('foo'), "\n"; 21?> 22--EXPECT-- 23test 24test 25foo 26--CREDITS-- 27Christian Weiske, cweiske@php.net 28PHP Testfest Berlin 2009-05-09 29