ConFoo Montreal 2026: Call for Papers

Voting

: max(zero, five)?
(Example: nine)

The Note You're Voting On

address at gmail dot com
17 years ago
If wanting to set an attribute of an element with unique id of "1"

<?php
$dom
= new DomDocument();
$dom->load('test.xml');
$xp = new DomXPath($dom);
$res = $xp->query("//*[@id = '1']");
$res->item(0)->setAttribute('title','2');
$dom->save('test.xml');
?>

<< Back to user notes page

To Top