Method: x::parse

Parses a XML string and returns an array

Info

Syntax

x::parse($xml)

Parameters

Return (mixed)

Example


x::parse('<xml><entries><cool>nice</cool></entries></xml>');
// output: array(
//    'entries' => array(
//        'cool' => 'nice'
//    )
// );