<?php function process_template($html,$b='<<',$e='>>'){ $replace=['this'=>'<input name="this" />','that'=>'<input name="that" />']; if(preg_match_all('/('.$b.')(.*?)('.$e.')/is',$html,$matches,PREG_SET_ORDER|PREG_OFFSET_CAPTURE)){ $t='';$o=0; foreach($matches as $m){ $t.=substr($html,$o,$m[0][1]-$o); $t.=$replace[$m[2][0]]; $o=$m[3][1]+strlen($m[3][0]); } $t.=substr($html,$o); $html=$t; } return $html; } $html=" <div> <<this>> <<that>> </div> "; $new=process_template($html); echo $new;
You have javascript disabled. You will not be able to edit any code.