mirror of
https://github.com/php/php-src.git
synced 2025-01-06 19:03:31 +08:00
16 lines
368 B
Plaintext
16 lines
368 B
Plaintext
|
--TEST--
|
||
|
Test if bindtextdomain() returns false if path does not exist.
|
||
|
--SKIPIF--
|
||
|
<?php
|
||
|
if (!extension_loaded("gettext")) {
|
||
|
die("skip gettext extension is not loaded.\n");
|
||
|
}
|
||
|
--FILE--
|
||
|
<?php
|
||
|
chdir(dirname(__FILE__));
|
||
|
var_dump(bindtextdomain('example.org', 'foobar'));
|
||
|
--EXPECTF--
|
||
|
bool(false)
|
||
|
--CREDITS--
|
||
|
Till Klampaeckel, till@php.net
|
||
|
PHP Testfest Berlin 2009-05-09
|