blob: 6a38943d10b453541cecfb96fadabfc41b87a3c0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
--TEST--
Test phpinfo() displays gettext support
--SKIPIF--
<?php
if (!extension_loaded("gettext")) {
die("SKIP extension gettext not loaded\n");
}
?>
--FILE--
<?php
phpinfo();
?>
--EXPECTF--
%a
%rGetText Support.*enabled%r
%a
--CREDITS--
Tim Eggert, tim@elbart.com
PHP Testfest Berlin 2009-05-09
|