php-8.0.30-src/ext/standard/tests/strings/strtr_empty_search_string.phpt

16 lines
350 B
PHP

--TEST--
strtr() trying to replace an empty string
--FILE--
<?php
var_dump(strtr("foo", ["" => "bar"]));
var_dump(strtr("foo", ["" => "bar", "x" => "y"]));
?>
--EXPECTF--
Warning: strtr(): Ignoring replacement of empty string in %s on line %d
string(3) "foo"
Warning: strtr(): Ignoring replacement of empty string in %s on line %d
string(3) "foo"