making sense of all the xml extensions in php 5

php.internals

NAIK,ROSHAN (HP-Cupertino,ex1)

22 years ago
I am trying to make sense of the following 4 xml extensions distributed with php 5 ext/libxml <- ?? ext/simplexml {experimental) ext/xml ext/dom {experimental) Dom extension's name is self describing. but about the others ? As I understand, simplexml is a simpler-to-use alternative to xml extension. what about that libxml ? whats it doing there..is it an extension truly ? If its not a extension its existence in the "ext" directory is confusing. I couldnt find the purpose of libxml mentioned anywhere. Could someone please explain ? -- Roshan

Andi Gutmans

22 years ago
At 02:31 PM 8/25/2004 -0700, Naik, Roshan wrote:
>I am trying to make sense of the following 4 xml extensions distributed with >php 5 > > ext/libxml <- ??
Infrastructure for streams and XML extensions.
> ext/simplexml {experimental)
SimpleXML (search the web)
> ext/xml
SAX
> ext/dom {experimental)
DOM Andi