Здравствуйте.
Имеется 2 строки, разница только в http | https
Все, что они делают - это внешние ссылки добавляют rel nofollow.
Но смотрится некрасиво. Можно ли объединить?
Спасибо!
$sResult = preg_replace('#<a([^<]*)href=["\']https://(?![a-z0-9.-]*'.quotemeta($_SERVER['HTTP_HOST']).'\/?)([^"\']*)["\']([^<]*)>(.*)</a>#ismU','<a$1href="https://$2"$3 rel="nofollow" target="_blank">$4</a>', $sResult);
$sResult = preg_replace('#<a([^<]*)href=["\']http://(?![a-z0-9.-]*'.quotemeta($_SERVER['HTTP_HOST']).'\/?)([^"\']*)["\']([^<]*)>(.*)</a>#ismU','<a$1href="http://$2"$3 rel="nofollow" target="_blank">$4</a>', $sResult);