<a href="/onw">один</a>
<a href="/twoo">один</a>
<a href="#">три</a>
<a href="https://mysite.ru">четыре</a>"
<a href="https://mysite.ru/news">пять</a>"
<a href="https://vk.com/feed">шесть</a>"
href=\"(http:\/\/|https:\/\/)всё_кроме_mysite.ru
href="(https?:\/\/(?!mysite\.ru\/?).+?)"
foreach( $links as $link ){
if( stripos( $link, $siteName ) === false ){
if( preg_match('#^(http\:\/\/|https\:\/\/)#', $link) ){
// Some actions
}
}
}