simplexml_load_string in PHP4?

Discussion in 'PHP' started by croni, Nov 23, 2007.

  1. #1
    Hi there,

    I need the functionality of 'simplexml_load_string' (which is only available in PHP5) in PHP4... does anyone know of a script or a way to do it? simplexml_load_string converts a xml string into an object...

    Thx!
     
    croni, Nov 23, 2007 IP
  2. anjanesh

    anjanesh Well-Known Member

    Messages:
    344
    Likes Received:
    7
    Best Answers:
    0
    Trophy Points:
    165
    #2
    Use PHP4's DOM feature.
     
    anjanesh, Nov 23, 2007 IP
  3. krt

    krt Well-Known Member

    Messages:
    829
    Likes Received:
    38
    Best Answers:
    0
    Trophy Points:
    120
    #3
    $dom = new DOMDocument;
    $dom->loadXML($strXML); 
    PHP:
     
    krt, Nov 23, 2007 IP