最後,我找到了解決方案來獲得我想要的。唯一的問題是 - 這是將郵政編號轉換爲鏈接郵編的最快速和最好的方式嗎?PHP正則表達式這是獲得這個結果的最快方法嗎?
BTW:我是問的意見,在這個線程:PHP Regular expression with arrows (>>)
也許有人會覺得這個劇本非常有用。
$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);
謝謝很多人! –