请PHP老师,帮忙写段代码.非常感谢!该怎么处理

WBOY
풀어 주다: 2016-06-13 13:22:20
원래의
758명이 탐색했습니다.

请PHP老师,帮忙写段代码.非常感谢!!
HtmlString = "……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'];
 //-->
 


……"

字符串变量HtmlString。变量值不确定。但都存在 var pictree = [字符串1] 和 。 

如何把 字符串1 里各''里的内容和 字符串2 连接起来组成一个新的字符串?


在线等。 第一次接触PHP。谢谢老师!!

------解决方案--------------------

PHP code
$HtmlString = 
 
<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);
<br><font color="#e78608">------解决方案--------------------</font><br>
로그인 후 복사
PHP code

$HtmlString = 
 
<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]; <div class="clear">
                 
              
              
        
            </div>
로그인 후 복사
관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿
회사 소개 부인 성명 Sitemap
PHP 중국어 웹사이트:공공복지 온라인 PHP 교육,PHP 학습자의 빠른 성장을 도와주세요!