mirror of
https://github.com/php/php-src.git
synced 2025-08-20 09:24:05 +02:00
12 lines
155 B
PHP
12 lines
155 B
PHP
--TEST--
|
|
strtr() with references
|
|
--FILE--
|
|
<?php
|
|
|
|
$foo = 'foo';
|
|
$arr = ['bar' => &$foo];
|
|
var_dump(strtr('foobar', $arr));
|
|
|
|
?>
|
|
--EXPECT--
|
|
string(6) "foofoo"
|