使用 XPATH(和 PHP)从样式属性中选择背景 url

发布于 2024-12-03 06:11:32 字数 269 浏览 1 评论 0原文

我只想从此背景图像样式属性中选择 url,这可以通过 XPATH 实现吗?

 <a href="http://www.test.com" style="background-image: url('http://www.test.com/hello.jpg');">test</a>

我有类似的东西

$url  = $xpath->query('//a//@style');

I'd like to select only the url from this background image style attribute, is that possible with XPATH?

 <a href="http://www.test.com" style="background-image: url('http://www.test.com/hello.jpg');">test</a>

i have something like

$url  = $xpath->query('//a//@style');

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

蓝天白云 2024-12-10 06:11:32

使用

substring-before(substring-after(@style, "'"),
                 "'"
                )

基于 XSLT 的验证

<xsl:stylesheet version="1.0"
 xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
 <xsl:output omit-xml-declaration="yes" indent="yes"/>
 <xsl:strip-space elements="*"/>

 <xsl:template match="/*">
     "<xsl:value-of select=
     "substring-before(substring-after(@style, "'"),
                       "'"
                       )
     "/>"
 </xsl:template>

</xsl:stylesheet>

当此转换应用于提供的 XML 文档时

 <a href="http://www.test.com" style=
 "background-image: url('http://www.test.com/hello.jpg');">test</a>

生成所需的正确结果< /强>:

 "http://www.test.com/hello.jpg"

Use:

substring-before(substring-after(@style, "'"),
                 "'"
                )

XSLT-based verification:

<xsl:stylesheet version="1.0"
 xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
 <xsl:output omit-xml-declaration="yes" indent="yes"/>
 <xsl:strip-space elements="*"/>

 <xsl:template match="/*">
     "<xsl:value-of select=
     "substring-before(substring-after(@style, "'"),
                       "'"
                       )
     "/>"
 </xsl:template>

</xsl:stylesheet>

when this transformation is applied on the provided XML document:

 <a href="http://www.test.com" style=
 "background-image: url('http://www.test.com/hello.jpg');">test</a>

the wanted, correct result is produced:

 "http://www.test.com/hello.jpg"
摘星┃星的人 2024-12-10 06:11:32
$arrHolder = array();
foreach ($xpath->query('//*[@style]') as $node) {
    if (strpos($node->getAttribute('style'), 'background:url') !== FALSE) {

        array_push($arrHolder, $node->tagName . " = " . $node->getAttribute('style'));
    }
}
echo '<pre>';
    print_r($arrHolder);
echo '</pre>';
$arrHolder = array();
foreach ($xpath->query('//*[@style]') as $node) {
    if (strpos($node->getAttribute('style'), 'background:url') !== FALSE) {

        array_push($arrHolder, $node->tagName . " = " . $node->getAttribute('style'));
    }
}
echo '<pre>';
    print_r($arrHolder);
echo '</pre>';
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文