Fügen Sie diese Suchfunktion zu Ihrer Klasse hinzu und spielen Sie mit diesem Code
$objXML = new xml2Array();
$arrOutput = $objXML->parse($contents);
// first param is always 0
// second is 'children' unless you need info like last updated date
// third is which statistics category you want for example
// 6 => the array you want that has wins and losses
print_r($arrOutput[0]['children'][6]);
//using the search function if key NAME is Montreal in the whole array
//result will be montreals array
$search_result = $objXML->search($arrOutput, 'NAME', 'Montreal');
//first param is always 0
//second is key name
echo $search_result[0]['WINS'];
function search($array, $key, $value)
{
$results = array();
if (is_array($array))
{
if (isset($array[$key]) && $array[$key] == $value)
$results[] = $array;
foreach ($array as $subarray)
$results = array_merge($results, $this->search($subarray, $key, $value));
}
return $results;
}
Achtung
bei dieser Suchfunktion wird zwischen Groß- und Kleinschreibung unterschieden, es müssen Änderungen vorgenommen werden, z. B. Übereinstimmung mit einem Prozentsatz, Schlüssel oder Wert, der das Großbuchstaben M in Montreal in Kleinbuchstaben umwandelt, ist leer