|
@@ -56,9 +56,9 @@
|
|
public static function parse(string $template, $data){
|
|
public static function parse(string $template, $data){
|
|
$ignored = [];
|
|
$ignored = [];
|
|
// Handle {#ignore code}
|
|
// Handle {#ignore code}
|
|
- $output = preg_replace_callback(static::$regex['ignore'], function($matches) use($ignored){
|
|
|
|
|
|
+ $output = preg_replace_callback(static::$regex['ignore'], function($matches) use(&$ignored){
|
|
$ignored[] = $matches[1];
|
|
$ignored[] = $matches[1];
|
|
- return '{#ignored '.count($ignored).'}';
|
|
|
|
|
|
+ return '{#ignored '.(count($ignored) - 1).'}';
|
|
}, $template);
|
|
}, $template);
|
|
// Handle {#each name}{/each}
|
|
// Handle {#each name}{/each}
|
|
$output = preg_replace_callback(static::$regex['each'], function($matches) use($data){
|
|
$output = preg_replace_callback(static::$regex['each'], function($matches) use($data){
|
|
@@ -101,7 +101,9 @@
|
|
$output = preg_replace_callback(static::$regex['match'], function($matches) use($data){
|
|
$output = preg_replace_callback(static::$regex['match'], function($matches) use($data){
|
|
return $data[$matches[1]] ?? '';
|
|
return $data[$matches[1]] ?? '';
|
|
}, $output);
|
|
}, $output);
|
|
- return $output;
|
|
|
|
|
|
+ return preg_replace_callback(static::$regex['ignored'], function($matches) use(&$ignored){
|
|
|
|
+ return $ignored[(int)$matches[1]] ?? '';
|
|
|
|
+ }, $output);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
?>
|
|
?>
|