diff --git a/reference/domxml/functions/DomAttribute-name.xml b/reference/domxml/functions/DomAttribute-name.xml index 332736e1a2..bd456761e0 100644 --- a/reference/domxml/functions/DomAttribute-name.xml +++ b/reference/domxml/functions/DomAttribute-name.xml @@ -1,23 +1,44 @@ - + DomAttribute->name - Returns name of attribute + Returns the name of attribute - + &reftitle.description; - - stringDomAttribute->name - - + + DomAttribute + + stringname + + + - This function returns the name of the attribute. + Gets the name of the attribute. + + + &reftitle.returnvalues; - See also domattribute_value for an example. + Returns the name of the attribute. + + + + Migrating to PHP 5 + + Use the name property of + DOMAttr. + + + + &reftitle.seealso; + + + for an example + diff --git a/reference/domxml/functions/DomAttribute-set-value.xml b/reference/domxml/functions/DomAttribute-set-value.xml new file mode 100644 index 0000000000..95c5ae653f --- /dev/null +++ b/reference/domxml/functions/DomAttribute-set-value.xml @@ -0,0 +1,80 @@ + + + + + DomAttribute->set_value + + Sets the value of an attribute + + + + &reftitle.description; + + DomAttribute + + boolset_value + stringcontent + + + + This function sets the value of an attribute. + + + + &reftitle.parameters; + + + + content + + + The new value. + + + + + + + + &reftitle.returnvalues; + + &return.success; + + + + Migrating to PHP 5 + + Set the value property of + DOMAttr. + + + + &reftitle.seealso; + + + + + + + + + diff --git a/reference/domxml/functions/DomAttribute-specified.xml b/reference/domxml/functions/DomAttribute-specified.xml index 74ce8de680..ade591ac01 100644 --- a/reference/domxml/functions/DomAttribute-specified.xml +++ b/reference/domxml/functions/DomAttribute-specified.xml @@ -1,5 +1,5 @@ - + DomAttribute->specified @@ -7,14 +7,41 @@ Checks if attribute is specified - + &reftitle.description; - - boolDomAttribute->specified - - + + DomAttribute + + boolspecified + + + - Check DOM standard for a detailed explanation. + Checks if the attribute was explicitly given a value in the original + document. + + + + This method is not implemented yet. + + + + + &reftitle.returnvalues; + + &return.success; + + + + &reftitle.seealso; + + + + The definition of specified in the DOM + Recommendations + + diff --git a/reference/domxml/functions/DomAttribute-value.xml b/reference/domxml/functions/DomAttribute-value.xml index ef6e8a851e..e01c364bd7 100644 --- a/reference/domxml/functions/DomAttribute-value.xml +++ b/reference/domxml/functions/DomAttribute-value.xml @@ -1,5 +1,5 @@ - + DomAttribute->value @@ -7,15 +7,21 @@ Returns value of attribute - + &reftitle.description; - - mixedDomAttribute->value - - + + DomAttribute + + stringvalue + + + This function returns the value of the attribute. + + + &reftitle.examples; Getting all the attributes of a node @@ -50,8 +56,27 @@ Attributes of chapter + + + &reftitle.returnvalues; - See also domattribute_name. + Returns the value of the attribute. + + + + Migrating to PHP 5 + + Use the value property of + DOMAttr. + + + + &reftitle.seealso; + + + + +