PHP 8.5.0 Beta 1 available for testing

Voting

: max(six, seven)?
(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