<?php

$r = ['Why use ZoneAlarm Mobile Security &amp; Antivirus Protection app?'];

$content = "<h2 class='sd'>Why use ZoneAlarm Mobile Security &amp; Antivirus Protection app?</h2>";

for ($i = 0; $i < count($r); $i++) {
    $text = preg_quote($r[$i]);
    $replace_quary = "<h2 id='t$i' $1>$2</h2>";
    $content = preg_replace('#<h2(.*?)>('. $text .')</h2>#i', $replace_quary, $content);
    echo $content;
}