日期:2014-05-17 浏览次数:20397 次
$HtmlString = <<<html ……var pictree = ['1341972991328.html','1341972991534.html','1341972991731.html','1341972991929.html','1341972992128.html','1341972992341.html','1341972992586.html','1341972992780.html','1341972992972.html','1341972993169.html','1341972993363.html','1341972993560.html','1341972993749.html','1341972993955.html','1341972994153.html']; //--> </SCRIPT> <input type="hidden" name="thePage" id="thePage" value="1" /> <input type="hidden" name="thePath" id="thePath" value="080819/hyrz008081909/1341972991328/" /> <input type="hidden" name="maxPage" id="maxPage" value="15" /> html; preg_replace('/var pictree = \[([^\]]*)\]/e',"\$s='$1'",$HtmlString); $arr=explode(',',str_replace("'",'',$s)); $str=preg_match('/id="thePath" value="(.*?)"/s',$HtmlString,$m); foreach($arr as &$v) $v=$m[1].$v ; print_r($arr);
------解决方案--------------------
$HtmlString = <<<HTML var pictree = ['1341972991328.html','1341972991534.html','1341972991731.html','1341972991929.html','1341972992128.html','1341972992341.html','1341972992586.html','1341972992780.html','1341972992972.html','1341972993169.html','1341972993363.html','1341972993560.html','1341972993749.html','1341972993955.html','1341972994153.html']; //--> </SCRIPT> <input type="hidden" name="thePage" id="thePage" value="1" /> <input type="hidden" name="thePath" id="thePath" value="080819/hyrz008081909/1341972991328/" /> <input type="hidden" name="maxPage" id="maxPage" value="15" />……" HTML; preg_match('/pictree\s=\s\[(.*)\].*id="thePath"\svalue="([a-z\d\/]+)"/is', $HtmlString, $match); if (isset($match[1]) && isset($match[2])) echo $match[1] . $match[2];