PHP Regex preg_match不起作用

时间:2014-07-06 22:26:55

标签: php regex preg-match

if (preg_match("/<response>(.*)<\/response>/iUms", '<response>CONNECTED_OK</response>', $mathces))
{
    var_dump($matches);
}

我尝试了这个,但是起初我有一个带有cURL的下载页面,其中包含我现在已经硬编码的主题。我已经尝试了很多其他的东西,但它总是返回带有null的$ match。

1 个答案:

答案 0 :(得分:2)

试试这个:

if (preg_match("/<response>(.*)<\/response>/iUms", '<response>CONNECTED_OK</response>', $matches)) { var_dump($matches); }

您有$mathces而不是$matches