请PHP老师,帮忙写段代码.非常感谢!该怎么处理
请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>

熱AI工具

Undresser.AI Undress
人工智慧驅動的應用程序,用於創建逼真的裸體照片

AI Clothes Remover
用於從照片中去除衣服的線上人工智慧工具。

Undress AI Tool
免費脫衣圖片

Clothoff.io
AI脫衣器

Video Face Swap
使用我們完全免費的人工智慧換臉工具,輕鬆在任何影片中換臉!

熱門文章

熱工具

記事本++7.3.1
好用且免費的程式碼編輯器

SublimeText3漢化版
中文版,非常好用

禪工作室 13.0.1
強大的PHP整合開發環境

Dreamweaver CS6
視覺化網頁開發工具

SublimeText3 Mac版
神級程式碼編輯軟體(SublimeText3)

本教程演示瞭如何使用PHP有效地處理XML文檔。 XML(可擴展的標記語言)是一種用於人類可讀性和機器解析的多功能文本標記語言。它通常用於數據存儲
