views:

25

answers:

1

Hi,

Is anyone find the class for LXML in PHP. I have no idea about python.

If anyone find the class or library or tutorials, please share with me

Thanks, Nithish

+2  A: 

lxml is a Pythonic binding for the libxml2 and libxslt libraries. There is no exact equivalent that offers the same API in PHP. But most XML extensions, like DOM or XMLReader or XSL are based on libxml or libsxlt.

Here is a good overview about the available extensions:

Gordon