在字符串中添加超链接并使用 php 跳过链接

问题描述

如何在字符串中创建自动链接并跳过标签 a 和标签 img

$str = 'hello world <a href="link">hello</a><img src="link img" alt="hello world">';

当我创建超链接 PHP 时返回此代码

$link = "wp.com";
$title = 'hello';
echo preg_replace("/$title/i","<a href=\"$link\" title=\"$title\">$title</a>",$str);

返回

<a href="wp.com" title="hello">hello</a> world <a href="link"><a href="wp.com" title="hello">hello</a></a><img src="link img" alt="<a href="wp.com" title="hello">hello</a> world">

这是重复链接。 我该如何解决这个问题?

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)