Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
есть $str. Там теги вида <!--nulled1-->, <!--nulled2-->, <!--nulled3--> и т.д. Как подсчитать сколько их? Если чуть по другому, например <!--nulled2a-->, то его не нужно считать
$s = '<!--nulled2--><!--nulled3--><!--nulled4--><!--nulled2nn--><!--nulled5-->';
preg_match_all('#<!--nulled\d*?-->#', $s, $preg);
echo sizeof($preg[0]);
а как теперь сделать str_replace?
<!--nulled2--> должен заменится с $null2, <!--nulled3--> заменится с $null3 и тд
$null1 =1;
$null2 =2;
$s = '<!--nulled1--><!--nulled2--><!--nulled2nn--> ';
preg_match_all('#<!--nulled(\d*?)-->#', $s, $preg, PREG_SET_ORDER);
foreach($preg as $result_arr){
$new_var_name = 'null'.$result_arr[1];
$s = str_replace($result_arr[0], $$new_var_name, $s );
}
echo sizeof($preg);
echo $s ;