mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00

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
41 lines
728 B
PHP
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"/>
|