php正则匹配html字符串中指定id或class

作者 : admin 本文共185个字,预计阅读时间需要1分钟 发布时间: 2023-03-12 共366人阅读

需求场景:我这里是需要匹配指定id的input框的value值

preg_match(”/<input type=”hidden” id=”SId” name=”SId” value=”(.*?)”/s’

‘,$html,$str);

注:$html为需要匹配的html字符串,$str为匹配成功的结果,

preg_match仅匹配一次,如果想多次匹配,用preg_match_all

嘟咪云,提供最优质的的资源集合
嘟咪云 » php正则匹配html字符串中指定id或class

常见问题FAQ