<?php $data = 'Some {abc} here'; $abc = "Word"; echo preg_replace_callback('/\{(.*?)\}/', function ($matches) { return $GLOBALS[$matches[1]]; }, $data);
You have javascript disabled. You will not be able to edit any code.