mirror of
https://github.com/php/php-src.git
synced 2026-04-25 17:08:14 +02:00
a555cc0b3d
Remove most of the `===DONE===` tags and its variations. Keep `===DONE===` if the test output otherwise becomes empty. Closes GH-4872.
15 lines
267 B
PHP
15 lines
267 B
PHP
--TEST--
|
|
Bug #73730 (textdomain(null) throws in strict mode)
|
|
--SKIPIF--
|
|
<?php
|
|
if (!extension_loaded('gettext')) die('skip gettext extension is not available');
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
declare(strict_types=1);
|
|
|
|
var_dump(textdomain(null));
|
|
?>
|
|
--EXPECT--
|
|
string(8) "messages"
|