mirror of
https://github.com/php/php-src.git
synced 2026-04-25 08:58:28 +02:00
d319098b24
Apparently, users expect `bindtextdomain` and `bind_textdomain_codeset` with `null` as second argument to work like their C counterparts, namely to return the previously set value. Thus, we support that. Closes GH-6631.
24 lines
556 B
PHP
24 lines
556 B
PHP
--TEST--
|
|
Bug #53251 (bindtextdomain with null dir doesn't return old value)
|
|
--SKIPIF--
|
|
<?php
|
|
if (!extension_loaded('gettext')) die('skip gettext extension not available');
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
var_dump(is_string(bindtextdomain('foo', null)));
|
|
$dir = bindtextdomain('foo', '.');
|
|
var_dump(bindtextdomain('foo', null) === $dir);
|
|
|
|
var_dump(bind_textdomain_codeset('foo', null));
|
|
var_dump(bind_textdomain_codeset('foo', 'UTF-8'));
|
|
var_dump(bind_textdomain_codeset('foo', null));
|
|
|
|
?>
|
|
--EXPECT--
|
|
bool(true)
|
|
bool(true)
|
|
bool(false)
|
|
string(5) "UTF-8"
|
|
string(5) "UTF-8"
|