2013-08-20 151 views
1

我的代碼中的preg_replace用htmlentities替換REGEX變量?

"<div style="font-style:italic;margin:8px 6px">$2</div>" 

更換以下位是否有辦法環繞$ 2ヶ輛()?

+0

仔細檢查你的報價,語法高亮顯示的東西是不正確的。 – elclanrs

回答

3

您可以使用preg_replace_callback()

function replace($matches) { 
    return '<div style="font-style:italic;margin:8px 6px">' 
     . htmlentities($matches[2]) . '</div>'; 
} 

preg_replace_callback('/pattern/', 'replace', $string); 
+0

謝謝!我不知道那個方便的小功能。 :) – Justin