1--TEST-- 2strtr() with references 3--FILE-- 4<?php 5 6$foo = 'foo'; 7$arr = ['bar' => &$foo]; 8var_dump(strtr('foobar', $arr)); 9 10?> 11--EXPECT-- 12string(6) "foofoo" 13