可能重複:
Grabbing the href attribute of an A element
Parse All Links That Contain A Specific Word In "href" Tag 添加到_blank所有外部鏈接
我使用下面的函數來_blank添加到我的網站上所有的鏈接。
function targetBlank($text) {
$return = str_replace('<a', '<a target="_blank"', $text);
return $return;
}
我正在尋找一個解決方案,只適用於外部鏈接(而不是我的域名)而不是所有鏈接。
這會失敗的標籤像'「,」
如果您想修復上述,