tqla Posted August 27, 2008 Share Posted August 27, 2008 Hello, is it possible to combine the following 2 preg_replace's into 1? preg_replace('/{{FirstName}}/i', "$i_FirstName", $txtbody); preg_replace('/{{LastName}}/i', "$i_LastName", $txtbody); Link to comment https://forums.phpfreaks.com/topic/121606-solved-combine-two-preg_replace/ Share on other sites More sharing options...
DarkWater Posted August 27, 2008 Share Posted August 27, 2008 Why are you using preg_replace() for that instead of str_replace? Link to comment https://forums.phpfreaks.com/topic/121606-solved-combine-two-preg_replace/#findComment-627271 Share on other sites More sharing options...
tqla Posted August 27, 2008 Author Share Posted August 27, 2008 it's inherited code, 1000's of lines of it so I am hesitant to make a drastic change. This is already there: $txtbody = preg_replace('/{{FirstName}}/i', "$i_FirstName", $txtbody); I wish to add another to replace Lastname. So I was hoping that I can do 2 in one shot. Is this possible? Link to comment https://forums.phpfreaks.com/topic/121606-solved-combine-two-preg_replace/#findComment-627272 Share on other sites More sharing options...
DarkWater Posted August 27, 2008 Share Posted August 27, 2008 $patten = array('/{{FirstName}}/i', '/{{LastName}}/i'); $replace = array($i_FirstName, $i_LastName); $txtbody = preg_replace($pattern, $replace, $txtbody); Just to let you know, that's a highly inefficient system. Are you using it for templating? I'd suggest using something like Smarty, because your page load times will suffer if you keep hardcoding those in like that. Link to comment https://forums.phpfreaks.com/topic/121606-solved-combine-two-preg_replace/#findComment-627277 Share on other sites More sharing options...
tqla Posted August 27, 2008 Author Share Posted August 27, 2008 OIC. Thanks DarkWater. I'm sure you're right about Smart/Curl but it's an old website that I cannot redo. Link to comment https://forums.phpfreaks.com/topic/121606-solved-combine-two-preg_replace/#findComment-627280 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.