1<?php
2
3include "bootstrap.php";
4
5$xml_reponse = file_get_contents(EXAMPLE_RESPONSE_XML_1);
6
7$solrObject = SolrUtils::digestXMLResponse($xml_reponse);
8
9print_r($solrObject->system->threadDump->thread->stackTrace);
10
11?>
12