summaryrefslogtreecommitdiff
path: root/ext/standard/tests/strings/strtr_with_reference.phpt
blob: 21cdc2031810456f9d852834f6360c0d8f9e610f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
--TEST--
strtr() with references
--FILE--
<?php

$foo = 'foo';
$arr = ['bar' => &$foo];
var_dump(strtr('foobar', $arr));

?>
--EXPECT--
string(6) "foofoo"