From: Alex B. <en...@tu...> - 2001-08-22 00:13:39
|
> Hello, >=20 > Mind me for asking (I just arrived), what is xml2php? I=B4m just wondering = if it > would not have much to with the goals of MetaL: http://www.meta-language.= net/ >=20 > Regards, > Manuel Lemos >=20 The idea behind xml2php is much more simple than metal, it's a utility designed to take xml "array syntax" and create php arrays from the xml. Briefly: <root> <array> <element1>value</element1> <element2>value</element2> </array> </root> $root =3D array( 'element1' =3D> 'value', 'element2' =3D> 'value' ); Useful for configuration files, etc that shouldn't be xml at runtime, but nice to edit xml instead of a php array. Actually, manuel, I think this list is an appropriate place to discuss MetaL, as I certainly intend to work with it an support it within binarycloud. best, _alex |