In my project I want to replace some strings with php variable and interations.
I have {Title} and this title I successfully replace with:
str_replace("{Title}", $this->title, $c);
This works but I have question how can I replace this content:
Template content:
<% loop Users %>
<p>$Title</p>
<% end_loop %>
Replace with this:
foreach($users as $var)
{
<p>$var->Title</p>
}