我有一个变量,其中包含 PhP 中的以下文本:
$description = "Flash <a href=\"http://www.aaa.com/\">this coupon</a> <br > <a href="http://www.ggg.com/">Visit here</a> for details <br >";
我如何添加
目标="_空白"
缺少$description
变量?
所以结果会变成如下:
$description = "Flash <a href=\"http://www.aaa.com/\" target="_blank">this coupon</a> <br > <a href="http://www.ggg.com/" target="_blank">Visit here</a> for details <br >";
我正在寻找变量 $description 被用户意外记录的解决方案。但是我需要系统通过将 target="blank" 添加到现有变量中并更新记录来找出并纠正它。