downloads | documentation | faq | getting help | mailing lists | reporting bugs | php.net sites | links | my php.net 
search for in the  

<DomAttribute->specifiedDomDocument->add_root>
Last updated: Thu, 26 Jun 2008

DomAttribute->value

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

DomAttribute->value — Returns value of attribute

Description

DomAttribute
string value ( void )

This function returns the value of the attribute.

Examples

Example #1 Getting all the attributes of a node

<?php

include("example.inc");

if (!
$dom = domxml_open_mem($xmlstr)) {
     echo
"Error while parsing the document\n";
     exit;
}

$root = $dom->document_element();
$attrs = $root->attributes();

echo
'Attributes of ' . $root->node_name() . "\n";
foreach (
$attrs as $attribute) {
     echo
' - ' . $attribute->name . ' : ' . $attribute->value . "\n";
}

?>

The above example will output:

Attributes of chapter
 - language : en

Return Values

Returns the value of the attribute.

Migrating to PHP 5

Use the value property of DOMAttr.



add a noteadd a note User Contributed Notes
Returns value of attribute
There are no user contributed notes for this page.




<DomAttribute->specifiedDomDocument->add_root>
Last updated: Thu, 26 Jun 2008
show source | credits | sitemap | contact | advertising | mirror sites
Copyright © 2001-2005 The PHP Group
All rights reserved.
This unofficial mirror is operated at: http://phpbuilder.com/
Last updated: Tue Nov 1 20:20:59 2005 EST
Columns / Articles | Tips / Quickies | News | News Linking and RSS Feeds | Shared Code Library
Mail Archives | Support / Discussion Forums | Get Started! Links | Contribute! | Docs