Blame | Letzte Änderung | Log anzeigen | RSS feed
--TEST--XML_Query2XML::getXML(): asterisk shortcut with attributes - supressing single attribute using "condition"--SKIPIF--<?php require_once dirname(dirname(__FILE__)) . '/skipif.php'; ?>--FILE--<?phprequire_once 'XML/Query2XML.php';require_once dirname(dirname(__FILE__)) . '/db_init.php';$query2xml =& XML_Query2XML::factory($db);$dom =& $query2xml->getXML("SELECT*FROMartistORDER BYartistid",array('rootTag' => 'music_library','rowTag' => 'artist','idColumn' => 'artistid','attributes' => array('*' => '*','genre' => array('value' => ':string','condition' => '#returnFalse'))));print $dom->saveXML();function returnFalse(){return false;}?>--EXPECT--<?xml version="1.0" encoding="UTF-8"?><music_library><artist artistid="1" name="Curtis Mayfield" birth_year="1920" birth_place="Chicago"/><artist artistid="2" name="Isaac Hayes" birth_year="1942" birth_place="Tennessee"/><artist artistid="3" name="Ray Charles" birth_year="1930" birth_place="Mississippi"/></music_library>