We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
setAttributeNodeNS() actually behaves different from setAttributeNode(). Think about redefining the behavior or at least documenting it:
$dom = new DOMDocument(); $dom->formatOutput = TRUE; $dom->appendChild($dom->createElement('element')); $dom->documentElement->setAttributeNS('urn:foo', 'foo:attribute', 42); $attribute = $dom->createAttributeNS('urn:bar', 'bar:attribute'); $attribute->value = 21; $dom->documentElement->setAttributeNode($attribute); echo $dom->saveXml(); $dom = new DOMDocument(); $dom->formatOutput = TRUE; $dom->appendChild($dom->createElement('element')); $dom->documentElement->setAttributeNS('urn:foo', 'foo:attribute', 42); $attribute = $dom->createAttributeNS('urn:bar', 'bar:attribute'); $attribute->value = 21; $dom->documentElement->setAttributeNodeNS($attribute); echo $dom->saveXml();
Output
<?xml version="1.0"?> <element xmlns:foo="urn:foo" xmlns:bar="urn:bar" bar:attribute="21"/> <?xml version="1.0"?> <element xmlns:foo="urn:foo" xmlns:bar="urn:bar" foo:attribute="42" bar:attribute="21"/>
The text was updated successfully, but these errors were encountered:
ThomasWeinert
No branches or pull requests
setAttributeNodeNS() actually behaves different from setAttributeNode(). Think about redefining the behavior or at least documenting it:
Output
The text was updated successfully, but these errors were encountered: