Subversion-Projekte lars-tiefland.php_share

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
1 lars 1
--TEST--
2
XML_Query2XML::getXML(): value - condition prefix with static text
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->getXML(
11
        "SELECT
12
            *
13
         FROM
14
            artist
15
            LEFT JOIN album ON album.artist_id = artist.artistid
16
         ORDER BY
17
            artistid,
18
            albumid",
19
        array(
20
            'rootTag' => 'music_library',
21
            'rowTag' => 'artist',
22
            'idColumn' => 'artistid',
23
            'elements' => array(
24
                'artistid',
25
                'name',
26
                'birth_year',
27
                'birth_place',
28
                'genre',
29
                'albums' => array(
30
                    'rootTag' => 'albums',
31
                    'rowTag' => 'album',
32
                    'idColumn' => 'albumid',
33
                    'value' => '?:',
34
                    'elements' => array(
35
                        'albumid',
36
                        'title',
37
                        'published_year',
38
                        'comment',
39
                    )
40
                )
41
            )
42
        )
43
    );
44
    print $dom->saveXML();
45
?>
46
--EXPECT--
47
<?xml version="1.0" encoding="UTF-8"?>
48
<music_library><artist><artistid>1</artistid><name>Curtis Mayfield</name><birth_year>1920</birth_year><birth_place>Chicago</birth_place><genre>Soul</genre><albums/></artist><artist><artistid>2</artistid><name>Isaac Hayes</name><birth_year>1942</birth_year><birth_place>Tennessee</birth_place><genre>Soul</genre><albums/></artist><artist><artistid>3</artistid><name>Ray Charles</name><birth_year>1930</birth_year><birth_place>Mississippi</birth_place><genre>Country and Soul</genre><albums/></artist></music_library>