请PHP老师,帮忙写段代码.非常感谢!该怎么处理
html
quot
请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>
登录后复制
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn

热AI工具

Undresser.AI Undress
人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover
用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool
免费脱衣服图片

Clothoff.io
AI脱衣机

AI Hentai Generator
免费生成ai无尽的。

热门文章
R.E.P.O.能量晶体解释及其做什么(黄色晶体)
2 周前
By 尊渡假赌尊渡假赌尊渡假赌
仓库:如何复兴队友
4 周前
By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island冒险:如何获得巨型种子
4 周前
By 尊渡假赌尊渡假赌尊渡假赌
击败分裂小说需要多长时间?
3 周前
By DDD
R.E.P.O.保存文件位置:在哪里以及如何保护它?
3 周前
By DDD

热工具

记事本++7.3.1
好用且免费的代码编辑器

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

禅工作室 13.0.1
功能强大的PHP集成开发环境

Dreamweaver CS6
视觉化网页开发工具

SublimeText3 Mac版
神级代码编辑软件(SublimeText3)

本教程演示了如何使用PHP有效地处理XML文档。 XML(可扩展的标记语言)是一种用于人类可读性和机器解析的多功能文本标记语言。它通常用于数据存储
