是否可以针对PHP中的多个模式验证XML?

时间:2010-04-30 16:19:28

标签: php xml multiple-schema

我想知道是否可以在PHP中针对多个模式验证xml,或者我必须以某种方式合并我的模式。

感谢您的回答!

4 个答案:

答案 0 :(得分:4)

主模式文件必须包含每个子模式文件的include标记。例如:

<xs:include schemaLocation="2nd_schema_file.xsd"/>

答案 1 :(得分:1)

我通过简单的PHP脚本解决了我的问题:

$mainSchemaFile = dirname(__FILE__) . "/main-schema.xml";
$additionalSchemaFile = 'second-schema.xml';


$additionalSchema = simplexml_load_file($additionalSchemaFile);
$additionalSchema->registerXPathNamespace("xs", "http://www.w3.org/2001/XMLSchema");
$nodes = $additionalSchema->xpath('/xs:schema/*');    

$xml = '';  
foreach ($nodes as $child) {
  $xml .= $child->asXML() . "\n";
}

$result = str_replace("</xs:schema>", $xml . "</xs:schema>", file_get_contents($mainSchemaFile));

var_dump($result); // merged schema in form XML (string)

但这可能只是因为模式是相同的 - 即

<xs:schema xmlns="NAMESPACE"
           targetNamespace="NAMESPACE"
           xmlns:xs="http://www.w3.org/2001/XMLSchema"
           elementFormDefault="qualified"
           attributeFormDefault="unqualified">

在两个文件中。

答案 2 :(得分:1)

Syfmony2开发人员解决了这个问题。这不是很干净,但会做:

function validateSchema(\DOMDocument $dom)
{
    $tmpfiles = array();
    $imports = '';
    foreach ($this->schemaLocations as $namespace => $location) {
        $parts = explode('/', $location);
        if (preg_match('#^phar://#i', $location)) {
            $tmpfile = tempnam(sys_get_temp_dir(), 'sf2');
            if ($tmpfile) {
                file_put_contents($tmpfile, file_get_contents($location));
                $tmpfiles[] = $tmpfile;
                $parts = explode('/', str_replace('\\', '/', $tmpfile));
            }
        }
        $drive = '\\' === DIRECTORY_SEPARATOR ? array_shift($parts).'/' : '';
        $location = 'file:///'.$drive.implode('/', array_map('rawurlencode', $parts));

        $imports .= sprintf('    <xsd:import namespace="%s" schemaLocation="%s" />' . PHP_EOL, $namespace, $location);
    }

    $source = <<<EOF
<?xml version="1.0" encoding="utf-8" ?>
<xsd:schema xmlns="http://symfony.com/schema"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    targetNamespace="http://symfony.com/schema"
    elementFormDefault="qualified">

    <xsd:import namespace="http://www.w3.org/XML/1998/namespace"/>
$imports
</xsd:schema>
EOF
    ;

    $current = libxml_use_internal_errors(true);
    $valid = $dom->schemaValidateSource($source);
    foreach ($tmpfiles as $tmpfile) {
        @unlink($tmpfile);
    }
    if (!$valid) {
        throw new \InvalidArgumentException(implode("\n", $this->getXmlErrors()));
    }
    libxml_use_internal_errors($current);
}

答案 3 :(得分:-1)

考虑到DOMDocument::schemaValidate方法接收模式文件的路径作为参数,我要说你只需要多次调用该方法:每个模式一次。

如果您的模式有PHP字符串,请参阅DOMDocument::schemaValidateSource;然而,想法(和答案)将是相同的:只需多次调用该方法。