[ create a new paste ] login | about

Link: http://codepad.org/2asj3qhq    [ raw code | output | fork ]

PHP, pasted on Mar 1:
1
2
3
4
5
6
7
8
9
10
11
<?php
$xml = new XMLWriter;
$xml->openMemory();
$xml->startDocument('1.0', 'UTF-8');

$xml->startElement("wololo");
$xml->writeAttribute("ver", "1.0");
$xml->endElement();

$xml->endDocument();
echo $xml->outputMemory(TRUE);


Output:
1
2
<?xml version="1.0" encoding="UTF-8"?>
<wololo ver="1.0"/>


Create a new paste based on this one


Comments: