使用 PHP 根据 Schematron 验证 XML

发布于 2024-10-14 09:23:41 字数 151 浏览 1 评论 0原文

有很多关于 Schematront 的资源...但是我找不到任何相关内容或关于如何根据 Schematront .sch 文件验证 xml 的示例。

有人吗?

我已经发现 1 或 2 个非常旧的类会返回错误...所以如果有人知道如何做到这一点,请提供帮助。

There are a lot of resources about Schematron... however I cant find anything related or an example on how to validate an xml against a Schematront .sch file.

Anyone?

I already found 1 or 2 very old classes that return errors... so if anyone knows how to do this, please help.

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

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

发布评论

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

评论(1

茶色山野 2024-10-21 09:23:41

我使用“ANT”选项。Build.xml

debugMode

<project name="myName" default="all" basedir=".">
  <taskdef name="schematron"
          classname="com.schematron.ant.SchematronTask"
          classpath="lib/ant-schematron-2010-04-14.jar;lib/saxon9he.jar"/>

  <target name="all" description="test it">
    <schematron schema="sch/test.sch" failonerror="false" debugMode="true">
      <fileset dir="./xml" includes="*.xml"/>
    </schematron>
  </target>

</project>

=true 显示中间 XSLT 文件

I use the 'ANT' option..

Build.xml

<project name="myName" default="all" basedir=".">
  <taskdef name="schematron"
          classname="com.schematron.ant.SchematronTask"
          classpath="lib/ant-schematron-2010-04-14.jar;lib/saxon9he.jar"/>

  <target name="all" description="test it">
    <schematron schema="sch/test.sch" failonerror="false" debugMode="true">
      <fileset dir="./xml" includes="*.xml"/>
    </schematron>
  </target>

</project>

debugMode=true shows you the intermediate XSLT file

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