php array to xml

L

luckerking

Hallo allerseits,

ich habe folgendes PHP Array:
PHP:
$tables['news'] = array (
                'id'  => array ('type' => 'key'),
                'foreign_id' = array ('type' =>'foreignkey',  'foreigntable' => 'tabletest', 'foreignkey' => 'id', 'foreigndisplay' => 'name'),
                'text' => array ('type' => 'text'  ),
                'date' => array ('type' => 'date'));

Dies möchte ich nun in xml konventions gerecht darstellen.

Ich mal ein Beispiel wie das xml aussehen könnte:
Code:
<?xml version="1.0" ?>
<tables>
<table name="news">
<column name="id" type="key" />
<column name="foreign_id" type="foreignkey"  foreigntable="tabletest"  foreignkey="id" foreigndisplay="name"/>
<column name="text" type="text" />
<column name="date" type="date" />
</table>
</tables>


Ich bin mir halt nicht sicher, ob man das Array so darstellen würde.

Mfg
 
Es wird nur zum Auslesen benötigt (warscheinlich mit simplexml und xpath).
Ich werde einfach mal testen, wie gut ich mit dem Aufbau klar komme.
 
Zurück