if (preg_match("/<response>(.*)<\/response>/iUms", '<response>CONNECTED_OK</response>', $mathces))
{
var_dump($matches);
}
我尝试了这个,但是起初我有一个带有cURL的下载页面,其中包含我现在已经硬编码的主题。我已经尝试了很多其他的东西,但它总是返回带有null的$ match。
答案 0 :(得分:2)
试试这个:
if (preg_match("/<response>(.*)<\/response>/iUms", '<response>CONNECTED_OK</response>', $matches)) { var_dump($matches); }
您有$mathces
而不是$matches