DOMElement::toggleAttribute
(PHP 8 >= 8.3.0)
DOMElement::toggleAttribute — 属性の値を切り替える
説明
属性の値を切り替えます。
パラメータ
例
例1 DOMElement::toggleAttribute() の例
<?php
$dom = new DOMDocument();
$dom->loadXML("<?xml version='1.0'?><container selected=\"\"/>");
var_dump($dom->documentElement->toggleAttribute('selected'));
echo $dom->saveXML() . PHP_EOL;
var_dump($dom->documentElement->toggleAttribute('selected'));
echo $dom->saveXML();
?>
上の例の出力は以下となります。
bool(false) <?xml version="1.0"?> <container/> bool(true) <?xml version="1.0"?> <container selected=""/>
+add a note
User Contributed Notes
There are no user contributed notes for this page.
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google