Welcome to CoolCatsComputing › Forums › Server-Side › Replacing parameters in string This topic has 0 replies, 1 voice, and was last updated 6 years, 8 months ago by CoolCatsComputing Administrator. Viewing 1 post (of 1 total) Author Posts June 13, 2018 at 12:34 pm #306 CoolCatsComputing AdministratorKeymaster Dear users, I have an array like this: $par['quantity'] = '10'; $par['sender'] = 'Peter'; $par['date'] = '12/12/2012'; And a string like this: $str = ‘{$sender} sent you {$quantity} objects on {$date}’; I want to replace every {$variable} with $par[‘variable’] I know I have to use preg_replace() How can I do? Thanks Author Posts Viewing 1 post (of 1 total) The topic ‘Replacing parameters in string’ is closed to new replies.