1
0
mirror of https://github.com/php/php-src.git synced 2026-03-26 17:22:15 +01:00
Files
archived-php-src/ext/standard/tests/strings/bug27457.phpt
2020-02-03 22:52:20 +01:00

22 lines
473 B
PHP

--TEST--
Bug #27457 (Problem with strtr() and translation array)
--FILE--
<?php
$test = "Dot in brackets [.]\n";
echo $test;
$test = strtr($test, array('.' => '0'));
echo $test;
$test = strtr($test, array('0' => '.'));
echo $test;
$test = strtr($test, '.', '0');
echo $test;
$test = strtr($test, '0', '.');
echo $test;
?>
--EXPECT--
Dot in brackets [.]
Dot in brackets [0]
Dot in brackets [.]
Dot in brackets [0]
Dot in brackets [.]