PHP:在标签中查找字符串并将其嵌入到另一个标签中
可能的重复:
CRUD节点和节点的简单程序xml文件的值
我有一个字符串(例如 $output),其中包含多个标签和文本的 html 代码。我需要查找所有 ID 标签:
<id>123456</id>
并将它们更改为:
<id>123456</id><url>www.webpage.com/somepage.php?id=123456</url>
如您所见,新标签已创建并添加到 ID 标签之后。
网页 url 地址存储在字符串 $url_adr 中。每个 ID 标签中的 ID 号始终不同。并且字符串中有多个ID标签,需要一一更改
我需要这段 PHP 代码。多谢....
Possible Duplicate:
A simple program to CRUD node and node values of xml file
I have a string (for example $output) with html code containing multiple tags and text. I need to lookup for all ID tags:
<id>123456</id>
and change them to:
<id>123456</id><url>www.webpage.com/somepage.php?id=123456</url>
As you can see the new tag is created and added after ID tag.
Webpage url address is stored in string $url_adr. ID number is always different in each ID tag. And there is multiple ID tags in string, so it needs to be changed one by one
I need this code in PHP. Thanks a lot....
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在像这样的简单情况下,您可以使用正则表达式替换来完成:
但如果您需要更复杂或功能更齐全的内容,您最好看看合适的 XML 解析器。
In simple cases like this, you can do it with a regular expression replace:
But if you need anything more complicated or full featured, you'd better take a look at proper XML parsers.