vote up 0 vote down star

I'm using Smarty and PHP. If I have a template (either as a file or as a string), is there some way to get smarty to parse that file/string and return an array with all the smarty variables in that template?

e.g.: I want something like this:

$mystring = "Hello {$name}. How are you on this fine {$dayofweek} morning";
$vars = $smarty->magically_parse( $string );
// $vars should now be array( "name", "dayofweek" );

The reason I want to do this is because I want users to be able to enter templates themselves and then fill them in at a later date. Hence I need to be able to get a list of the variables that are in this templates.

Let's assume that I'm only doing simple variables (e.g.: no "{$object.method}" or "{$varaible|function}"), and that I'm not including any other templates.

flag

71% accept rate

2 Answers

vote up 1 vote down

Normally I'm against regular expressions, but this looks like a valid case to me. You could use preg_match_all() to do that (If you only want variables like ${this}):

preg_match_all('\{\$(.*?)\}', $string, $matches, PREG_PATTERN_ORDER);
$variableNames = $matches[1];
link|flag
2  
Notes: (1) Smarty variables are {$var}, not ${var}. (2) $matches will be an array of arrays, so you will have to iterate over $matches[0] to access full matches. (3) It might be easier to capture the contents of { and } using parantheses, then accessing it using $matches[1] instead of using substr() on the full matches. – Ferdinand Beyer Oct 27 at 10:27
@Ferdinand: Thx, updated answer. – soulmerge Oct 27 at 10:29
You could just do $variableNames = $matches[1]; . If you want to loop over the result like you are doing, you need to use the PREG_SET_ORDER flag I think. – Tom Haigh Oct 27 at 11:15
@Tom: Thx, it was PREG_PATTERN_ORDER, and reduced the code to two lines. – soulmerge Oct 27 at 11:26
PREG_PATTERN_ORDER is the default, I meant that for your previous example to work you needed to specify PREG_SET_ORDER. But PREG_PATTERN_ORDER is better here – Tom Haigh Oct 27 at 11:39
show 2 more comments
vote up -2 vote down

Try http://php.net/manual/en/function.get-defined-vars.php

link|flag
That works for the PHP variables, I want this for the Smarty variables that are defined in a template – Rory Oct 27 at 9:59

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.