-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
29 lines (21 loc) · 775 Bytes
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
abrir, modificar e imprimir xml com php:
<?xml version="1.0" encoding="ISO-8859-1"?>
<mundo>
<pais nome="Nederland" continente="North-West Europe" url="nederland.html"/>
<pais nome="brasil" continente="America do sul" url="brasil.html"/>
<pais nome="Canada" continente="America do norte" url="canada.html"/>
</mundo>
<?php
$sax = simplexml_load_file( 'modificado2.xml' );
$attr = $sax->pais[ 1 ]->attributes();
$attr->nome = 'brasil';
$attr->continente = 'America do sul';
$attr->url = 'brasil.html';
$attr = $sax->pais[ 2 ]->attributes();
$attr->nome = 'Canada';
$attr->continente = 'America do norte';
$attr->url = 'canada.html';
echo $sax->asXML();
//GRAVA NO ARQUIVO EXEMPLO.XML
file_put_contents('modificado2.xml' , $sax->asXML());
---------------------------