php-src/ext/dom/tests/domattributes.phpt
Max Semenik bd9f4fa676 Migrate skip checks to --EXTENSIONS--, p2
For rationale, see https://github.com/php/php-src/pull/6787

Make extension checks lowercase, add a special case for opcache
that has internal name not matching .so filename.

Extensions migrated in part 2:
* dom
* exif
* fileinfo
* ffi
2021-04-01 12:08:24 +01:00

41 lines
728 B
PHP

--TEST--
Attributes: DOMAttribute functionality
--EXTENSIONS--
dom
--FILE--
<?php
require_once("dom_test.inc");
$dom = new DOMDocument;
$dom->loadXML($xmlstr);
if(!$dom) {
echo "Error while parsing the document\n";
exit;
}
$node = $dom->documentElement;
$lang = $node->getAttributeNode('language');
echo "Language: ".$lang->value."\n";
$lang->value = 'en-US';
echo "Language: ".$lang->value."\n";
$parent = $lang->ownerElement;
$chapter = new DOMAttr("num", "1");
$parent->setAttributeNode($chapter);
echo "Is ID?: ".($chapter->isId()?'YES':'NO')."\n";
$top_element = $node->cloneNode();
print $dom->saveXML($top_element);
?>
--EXPECT--
Language: en
Language: en-US
Is ID?: NO
<chapter language="en-US" num="1"/>