php正则匹配html字符串中指定id或class
需求场景:我这里是需要匹配指定id的input框的value值
preg_match(”/<input type=”hidden” id=”SId” name=”SId” value=”(.*?)”/s’
‘,$html,$str);
注:$html为需要匹配的html字符串,$str为匹配成功的结果,
preg_match仅匹配一次,如果想多次匹配,用preg_match_all
需求场景:我这里是需要匹配指定id的input框的value值
preg_match(”/<input type=”hidden” id=”SId” name=”SId” value=”(.*?)”/s’
‘,$html,$str);
注:$html为需要匹配的html字符串,$str为匹配成功的结果,
preg_match仅匹配一次,如果想多次匹配,用preg_match_all