Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个非常复杂但格式正确的 HTML 字符串,其中包含很多链接。我的部分任务是将所有锚点转换为带有“XX1”字样的粗体。在不使用 jQuery/js 的情况下,这可以在 PHP 中完成吗?
您可以preg_replace为此使用,请尝试:
preg_replace
preg_replace('/(<a.*>.*XX1.*<\/a>)/imU', '<b>${1}</b>', $html);
没有测试模式,但应该可以。