最后我找到了得到我想要的解决方案。唯一的问题是 - 这是将帖子编号更改为链接帖子编号的最快和最好的方法吗?
顺便说一句:我在这个线程中寻求建议:带箭头的 PHP 正则表达式 (>>)
也许有人会发现这个脚本很有用。
$string = "Lorem lipsum >>86721678 texttexttexttexttext >>64356 >234234 9894823 text gdsfs>>54353<br /><br />";
preg_match_all('!\>\>\d+!', $string, $matches);
$nowy = array();
//getting each number modified
for ($i=0;$i<count($matches[0]);$i++)
{
$nowy[$i] = "<a href=''><font color='red'>".$matches[0][$i]."</font></a>";
}
echo str_replace($matches[0], $nowy, $string);