Forum und email

DomElement->set_attribute()

(No version information available, might be only in CVS)

DomElement->set_attribute() — 属性値を設定ã™ã‚‹

説明

DomElement
DomAttribute set_attribute ( string $name , string $value )

åå‰ name ã‚’æŒã¤å±žæ€§å€¤ã‚’ value ã«è¨­å®šã—ã¾ã™ã€‚

パラメータ

name

属性å。もã—属性ãŒå­˜åœ¨ã—ãªã„å ´åˆã€æ–°ãŸã«ä½œæˆã•ã‚Œã¾ã™ã€‚

value

属性値

返り値

å¤ã„ DomAttribute ノード〠もã—ãã¯æœ€åˆã«å±žæ€§ãŒä½œæˆã•ã‚ŒãŸå ´åˆã¯æ–°ã—ã„ノードを返ã—ã¾ã™ã€‚

例

Example#1 属性を設定ã™ã‚‹

<?php
$doc 
domxml_new_doc("1.0");
$node $doc->create_element("para");
$newnode $doc->append_child($node);
$newnode->set_attribute("align""left");
?>

PHP 5 ã¸ã®ç§»è¡Œ

DOMElement->setAttribute() を使用ã—ã¦ãã ã•ã„。