PHP preg_match没有在结果字符串中显示括号及其内容

时间:2014-02-27 20:00:43

标签: php html

简单的事情

$stringData = file_get_contents('testtext.txt');    
$regular='/beginning "(.*?)"end/ueU';
preg_match($regular, $stringData,$match);
echo $match[0];

只是为了获得字符串开头的字符串“和字符串”结束

结果如下:

会员群体活动RSS标题 - “[网站名称] | [用户显示#。名称] |群组活动

但文字是(我想得到一切):

</strong> and <strong>member groups activity RSS title - "[Site Name] | [User Display]
<EMAIL@ADDRESS> #. Name] | Groups Activity

它没有显示括号和括号中的文字&lt;&gt;在结果字符串中。

1 个答案:

答案 0 :(得分:2)

这就是HTML在浏览器中呈现的方式:

echo htmlentities($match[0]);