1--TEST--
2Gettext basic test with en_US locale that should be on nearly every system
3--SKIPIF--
4<?php
5	if (!extension_loaded("gettext")) {
6		die("skip\n");
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(dirname(__FILE__));
16setlocale(LC_ALL, 'en_US.UTF-8');
17bindtextdomain ("messages", "./locale");
18textdomain ("messages");
19echo gettext("Basic test"), "\n";
20echo _("Basic test"), "\n";
21
22?>
23--EXPECT--
24A basic test
25A basic test
26--CREDITS--
27Christian Weiske, cweiske@php.net
28PHP Testfest Berlin 2009-05-09