是否可以使用存储在字符串中的 XSD shema 验证 SimpleXMLElement?
我通过 CURL 得到这个 xml:
<production_feedback>
<production_number>DA1100208</production_number>
<production_status>DONE</production_status>
</production_feedback>
在我这边,我是这样理解的:
if ( $_SERVER['REQUEST_METHOD'] === 'POST' ){
$post_text = file_get_contents('php://input');
$xml = new SimpleXMLElement($post_text);
error_log(print_r($xml , true));
}
这是在我的error_log()
:
SimpleXMLElement Object\n(\n [production_number] => DA1100208\n [production_status] => PRODUCTION_IN_PROGRESS\n)\n
所以我可以使用 Xpath 访问数据。这很好用。我想用 XSD 验证它。是否有可能,或者是否有任何其他方式 2 使用 XSD 字符串验证 XML 字符串?
这是我存储在变量中的 XSD 顺便说一句:
$production_XSD ='<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="production_feedback">
<xs:complexType>
<xs:sequence>
<xs:element type="xs:string" name="production_number"/>
<xs:element type="xs:string" name="production_status"/>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>'