PHP:在标签中查找字符串并将其嵌入到另一个标签中

发布于 2024-11-29 14:57:49 字数 602 浏览 1 评论 0原文

可能的重复:
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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

浊酒尽余欢 2024-12-06 14:57:49

在像这样的简单情况下,您可以使用正则表达式替换来完成:

$output = '<id>123456</id>';
$url_adr = 'www.webpage.com/somepage.php?id=';
preg_replace('~<id>(.*?)</id>~i', '<id>$1</id><url>'.$url_adr.'$1</url>', $output);

但如果您需要更复杂或功能更齐全的内容,您最好看看合适的 XML 解析器。

In simple cases like this, you can do it with a regular expression replace:

$output = '<id>123456</id>';
$url_adr = 'www.webpage.com/somepage.php?id=';
preg_replace('~<id>(.*?)</id>~i', '<id>$1</id><url>'.$url_adr.'$1</url>', $output);

But if you need anything more complicated or full featured, you'd better take a look at proper XML parsers.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文