Details |
Letzte Änderung |
Log anzeigen
| RSS feed
| Revision |
Autor |
Zeilennr. |
Zeile |
| 1 |
lars |
1 |
--TEST--
|
|
|
2 |
XML_Query2XML::getFlatXML(): simple select
|
|
|
3 |
--SKIPIF--
|
|
|
4 |
<?php require_once dirname(dirname(__FILE__)) . '/skipif.php'; ?>
|
|
|
5 |
--FILE--
|
|
|
6 |
<?php
|
|
|
7 |
require_once 'XML/Query2XML.php';
|
|
|
8 |
require_once dirname(dirname(__FILE__)) . '/db_init.php';
|
|
|
9 |
$query2xml =& XML_Query2XML::factory($db);
|
|
|
10 |
$dom =& $query2xml->getFlatXML('SELECT * FROM album ORDER BY albumid');
|
|
|
11 |
echo $dom->saveXML();
|
|
|
12 |
?>
|
|
|
13 |
--EXPECT--
|
|
|
14 |
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
15 |
<root><row><albumid>1</albumid><artist_id>1</artist_id><title>New World Order</title><published_year>1990</published_year><comment>the best ever!</comment></row><row><albumid>2</albumid><artist_id>1</artist_id><title>Curtis</title><published_year>1970</published_year><comment>that man's got somthin' to say</comment></row><row><albumid>3</albumid><artist_id>2</artist_id><title>Shaft</title><published_year>1972</published_year><comment>he's the man</comment></row></root>
|