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