我正在写一RSS
到JSON parser
,并作为其中的一部分,我需要使用htmlentities()
的描述标签中找到的任何标记.目前,我正在尝试使用preg_replace()
,但我正在苦苦挣扎.我当前的(非工作)代码如下所示:
$pattern[0] = "/\(.*?)\<\/description\>/is"; $replace[0] = ' '.htmlentities("$1").' '; $rawFeed = preg_replace($pattern, $replace, $rawFeed);
如果您对此也有更优雅的解决方案,请分享.谢谢.
简单.用途preg_replace_callback
:
function _handle_match($match) { return '' . htmlentities($match[1]) . ' '; } $pattern = "/\(.*?)\<\/description\>/is"; $rawFeed = preg_replace_callback($pattern, '_handle_match', $rawFeed);
它接受任何回调类型,也接受类中的方法.