gpt4 book ai didi

php - 如何使用 PHP 获取 HTML Div 的值

转载 作者:搜寻专家 更新时间:2023-10-31 21:30:27 25 4
gpt4 key购买 nike

我有一个 div,它是 php。它在下面给出。

$did = "<div id='primary'>value 110</div>";

我只需要将某些变量的值作为 'value 110'。我不想使用 JqueryAjax 或任何其他javascript

我需要 PHP 变量中的 div 值。

而且 Div 中的值“值 110”是通过 Jquery 获得的。因此它是单击编辑按钮时的运行时值。

最佳答案

PHP Simple HTML DOM Parser可能是您需要的,试试吧。

下面是一个显示如何编辑 HTML 元素的示例:

$html = str_get_html('<div id="hello">Hello</div><div id="world">World</div>');

$html->find('div', 1)->class = 'bar';

$html->find('div[id=hello]', 0)->innertext = 'foo';

echo $html; // Output: <div id="hello">foo</div><div id="world" class="bar">World</div>

从示例中您可以轻松创建所需的代码:

$html = str_get_html("<div id='primary'>value 110</div>");
$text = $html->find('div[id=primary]', 0)->innertext;
echo $text; // Prints "value 110", the content inside the div called "primary"

我还没有尝试过代码,但我相信它应该有效。

关于php - 如何使用 PHP 获取 HTML Div 的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30569809/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com