You'll need to do a number of things. I'm assuming you can do the legwork to get the page data you want to preprocess into a string.
First, you'll need the regular expression to match correctly. That should be fairly easy with something like
/{\w+}/.Next you'll need to use all of the flags to preg_match to get the offset location in the page data. This offset will let you divide the string into the before, matching, and after parts of the match.
Once you have the 3 parts, you'll need to run your include, and stick them back together.
Lather, rinse, repeat.
Stop when you find no more variables.
This isn't terribly efficient, and there are probably better ways. You may wish to consider doing a preg_split instead, splitting on /[{}]/. No matter how you slice it you're assuming that you can trust your incoming data, and this will simplify the whole process a lot. To do this, I'd lay out the code like so:
Take your content and split it like so:
$parts = preg_split('/[{}]/', $page_string);Write a recursive function over the parts with the following criteria:
- Halt when length of arg is < 3
- Else, return a new array composed of
- $arg[0] . load_data($arg[1]) . $arg[2]
- plus whatever is left in $argv[3...]
Run your function over $parts.
