Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

PHP regex templating - find all occurrences of {{var}}

I need some help with creating a regex for my php script. Basically, I have an associative array containing my data, and I want to use preg_replace to replace some place-holders with real data. The input would be something like this:

<td>{{address}}</td><td>{{fixDate}}</td><td>{{measureDate}}</td><td>{{builder}}</td>

I don't want to use str_replace, because the array may hold many more items than I need.

If I understand correctly, preg_replace is able to take the text that it finds from the regex, and replace it with the value of that key in the array, e.g.

<td>{{address}}</td>

get replaced with the value of $replace['address']. Is this true, or did I misread the php docs?

If it is true, could someone please help show me a regex that will parse this for me (would appreciate it if you also explain how it works, since I am not very good with regexes yet).

Many thanks.

like image 320
a_m0d Avatar asked Jun 06 '09 04:06

a_m0d


1 Answers

Use preg_replace_callback(). It's incredibly useful for this kind of thing.

$replace_values = array(
  'test' => 'test two',
);
$result = preg_replace_callback('!\{\{(\w+)\}\}!', 'replace_value', $input);

function replace_value($matches) {
  global $replace_values;
  return $replace_values[$matches[1]];
}

Basically this says find all occurrences of {{...}} containing word characters and replace that value with the value from a lookup table (being the global $replace_values).

like image 116
cletus Avatar answered Oct 14 '22 16:10

cletus