1--TEST-- 2Buf #67151: strtr with empty array crashes 3--FILE-- 4<?php 5var_dump(strtr("foo", [])); 6?> 7--EXPECT-- 8string(3) "foo" 9