summaryrefslogtreecommitdiff
path: root/ext/standard/tests/strings/strtr_with_reference.phpt
blob: a28d1e7be907d5bda61d8d29204229cc70a59b55 (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"