このコードがあるとしましょう
$text = "please visit this <a href="http://example.com">site</a>."
$text = htmlspecialchars($text);
echo $text;
という出力になりますplease visit this <a href="http://example.com">site</a>.
が、このような出力が欲しいので、こちらのサイト
をご覧ください。それがhrefかどうかを確認してから何かをする方法はありますか? ありがとう。