DomNode->attributes

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

DomNode->attributes — Returns list of attributes

Описание

array DomNode->attributes ( void )

This function only returns an array of attributes if the node is of type XML_ELEMENT_NODE.

(PHP >= 4.3 only) If no attributes are found, NULL is returned.

[an error occurred while processing the directive]

Коментарии

$xpath = $parseDoc->xpath_new_context($parseDoc);       
$getResultSearch = $xpath->xpath_eval("//PROPERTY_INFORMATION_RESPONSE/_PRODUCT");
$nodesetResult = $getResultSearch->nodeset; 
$var1=$getResultSearch->nodeset[0]->attributes() ;
implode($var1);
print_r ($var1 )  ;

// it prints something like this:::::

Array ( [0] => domattribute Object ( [type] => 2 [name] => _PrettyAttr [value] => Y [0] => 26 [1] => 161068800 ) )
2005-01-05 14:41:38
http://php5.kiev.ua/manual/ru/function.domnode-attributes.html
Автор:
A function to get the value of an attribute given the name of the desired attribute and the results of attributes() to the second parameter.
<?php
function getAttribute($name$att)
{
    foreach(
$att as $i)
    {
        if(
$i->name()==$name)
            return 
$i->value();       
    }
}
?>
2005-11-29 10:03:54
http://php5.kiev.ua/manual/ru/function.domnode-attributes.html

    Поддержать сайт на родительском проекте КГБ