<?php $string = 'try replacing {foo} and {huh} and {bar} in text'; $data_array = [ 'foo' => 'fighters', 'bar' => 'snacks', ]; echo preg_replace_callback( '/{(\w+)}/', fn($m) => $data_array[$m[1]] ?? $m[0], $string );
You have javascript disabled. You will not be able to edit any code.