大家好,我最近遇到了PHP preg_match_all()
。
我在REGEXP上真的很糟糕,我必须找到:
var nx = (100000 + x) * 23452;
preg_match_all()
,我这样做:
preg_match_all('/var nx = (100000 + x) * (.*);/', $html, $token);
return $token[1][0];
我想在我的阵列上输出这样的输出:
23452
请有人帮助我,解释会很感激。感谢。