- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
假设我有一个这样的源文件:
<element>
<subelement xmlns:someprefix="mynamespace"/>
</element>
xmlns:someprefix
显然这里不需要并且不做任何事情,因为该前缀没有在该元素中使用(或者在我的情况下,在文档中的任何地方)。
hasAttribute()
阅读它甚至用
removeAttributeNS()
删除它(奇怪)但前提是我知道它的前缀。它没有出现在
DOMNode->attributes
根本没有,因为我试图找到的东西不被视为属性。除了将其序列化回 XML 字符串并运行正则表达式或其他东西之外,我看不到任何检测它是否存在的方法。
最佳答案
如何检测:
<?php
$d = new DOMDocument();
$d->loadXML('
<element>
<subelement xmlns:someprefix="http://mynamespace/asd">
</subelement>
</element>');
$sxe = simplexml_import_dom($d);
$namespaces = $sxe->getDocNamespaces(true);
$x = new DOMXpath($d);
foreach($namespaces as $prefix => $url){
$count = $x->evaluate("count(//*[namespace-uri()='".$url."' or @*[namespace-uri()='".$url."']])");
echo $prefix.' ( '.$url.' ): used '.$count.' times'.PHP_EOL;
}
xml_parse_into_struct()
(因为这不是依赖于 libxml2 的 afaik),并使用
XML Writer
循环遍历结果数组函数,跳过未使用的命名空间声明。不是一个有趣的消遣,所以我会把实现留给你。根据
this question,另一种选择可能是 XSL ,但我怀疑它有多大用处。我的最大努力似乎成功了,但将“顶级”/rootnode 命名空间移至子节点,导致更加困惑。
<element xmlns:yetanotherprefix="http://mynamespace/yet">
<subelement
xmlns:someprefix="http://mynamespace/foo"
xmlns:otherprefix="http://mynamespace/bar"
foo="bar"
yetanotherprefix:bax="foz">
<otherprefix:bar>
<yetanotherprefix:element/>
<otherprefix:element/>
</otherprefix:bar>
<otherprefix:bar>
<yetanotherprefix:element/>
<otherprefix:element/>
</otherprefix:bar>
<yetanotherprefix:baz/>
</subelement>
not()
子句基于之前的 $used 数组,所以你仍然需要那个 afaik。
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet
xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"
xmlns:yetanotherprefix="http://mynamespace/yet"
xmlns:otherprefix="http://mynamespace/bar">
<xsl:template match="/">
<xsl:apply-templates select="/*"/>
</xsl:template>
<xsl:template match="*">
<xsl:element name="{name(.)}">
<xsl:apply-templates select="./@*"/>
<xsl:copy-of select="namespace::*[not(name()='someprefix')]"/>
<xsl:apply-templates select="./node()"/>
</xsl:element>
</xsl:template>
<xsl:template match="@*">
<xsl:copy/>
</xsl:template>
</xsl:stylesheet>
<?xml version="1.0"?>
<element xmlns:yetanotherprefix="http://mynamespace/yet">
<subelement xmlns:otherprefix="http://mynamespace/bar" foo="bar" yetanotherprefix:bax="foz">
<otherprefix:bar>
<yetanotherprefix:element/>
<otherprefix:element/>
</otherprefix:bar>
<otherprefix:bar>
<yetanotherprefix:element/>
<otherprefix:element/>
</otherprefix:bar>
<yetanotherprefix:baz/>
</subelement>
</element>
关于php - 如何检测和删除不必要的 xmlns :<something> attributes in PHP DOM?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3810569/
什么是xmlns:android、xmlns:app、xmlns:tools,它们之间的基本区别是什么?什么时候应该使用它? 最佳答案 对于 android 和 app 命名空间,使用 this li
有人要求我从 http 端点提供以下 XML 文档,完全像:- ... 但是 Web API 吐出 ... 我用谷歌搜索并尝试了各种修复但无济于事
有没有办法声明这样的命名空间: xmlns:views="clr-namespace:xxx.xxx.Views" xmlns:someNestedViews="views.SomeNestedVie
这个工作正常。 curl -H 'Content-Type: application/xml' -d " " https://dashboard.onsip.com/http-bind 这个返回一
对于以下 XML 片段: xmlns、xmlns:xsi 和 xsi:schemaLocation 属性的确切含义是什么?它们有什么关系? : 的作用是什么? xsi:schemaLocation=
最佳答案 它提示属性 tools:context=".MainActivity"那是 的一部分标签。它不知道 tools: 是什么前缀表示。 您需要添加 xmlns:too
我在 C# Windows 窗体应用程序中使用 .Net XmlSerializer 将对象序列化为 XML 文档。 根元素应该看起来像这样: 在分部类中(加入由 xsd.exe 创建的分
太气人了,简直说不出话来。我已经使用 SimpleXML 组装了一个 RSS 提要,但它正在使用现在的 namespace 。但是,输出时,它不断尝试在根节点中声明 xmlns:xmlns=""。尽管
假设我的 Web 服务发出带有“xmlns”、“xmlns:xsi”和“xsi:schemaLocation”的 XML 设置为占位符,这些占位符不是有效的 URI(例如“blahblahblah”)
我在这里有一个关于 XML 的基本问题。声明元素的 xmlns 时属性,使用 http://www.w3.org/2001/XMLSchema 是否合法? ?并在声明 xmlns:xsi 时属性,使用
我需要从 XSD 生成的 Java 类生成 XML 文件。 这些 Java 类中的某些字段作为 Object 而不是任何具体类型,因此在生成的 XML 文件中保证有 xsi:type 属性,这很好。
这个问题已经有答案了: NLS missing message: CANNOT_FIND_FACELET_TAGLIB (3 个回答) 已关闭 8 年前。 我正在尝试在 jsf 中创建自定义标签,这是
我尝试通过 LINQ to XML 创建 GPX XML 文档。 除了向文档添加 xmlns、xmlns:xsi 属性外,一切都很好。通过尝试不同的方式,我得到了不同的异常。 我的代码: XDocum
有没有人遇到这个“xmlns”命名空间问题(见下文)?我无法再构建我的工作项目。 起初我以为这是我的 git 分支,所以我切换到 origin develop 和 master 分支 - 问题仍然存在
在使用 JAXB 时,我想在使用泛型时从我的 XML 元素中删除多余的命名空间/类型。我该怎么做或者我做错了什么?我想使用泛型,这样我只需编写一次代码块。 示例代码: public static vo
我喜欢将页面作为 HTML 4.01 提供,因为 XHTML 在某些浏览器中并没有真正被视为 XHTML,但是 Facebook's OpenGraph meta tags要求: 但是由于页面的 D
我需要复制一个 xml header : 用我的代码: 'Export the object to XML Dim writer As New XmlSerializ
将 WCF Restful 服务与 XmlSerializer 结合使用,我得到以下响应。 0010327457 false
我的要求是转换以下 xml 文件: 10122 LE NAME A0000000A 到新的 xml 文件 :( 所需的输出: )
众所周知,ConstraintLayout是目前android开发中最流行、最高效的布局。但是要使用它的属性,您必须先导入“xmlns:app”。当您需要使用 ConstraintLayout 创建许
我是一名优秀的程序员,十分优秀!