mirror of
https://github.com/php/pecl-search_engine-solr.git
synced 2026-03-23 22:52:07 +01:00
18 lines
270 B
PHP
18 lines
270 B
PHP
<?php
|
|
|
|
include "bootstrap.php";
|
|
|
|
$xml_reponse = file_get_contents(EXAMPLE_RESPONSE_XML_1);
|
|
|
|
$solrObject = SolrUtils::digestXMLResponse($xml_reponse);
|
|
|
|
$header = ($solrObject['responseHeader']);
|
|
|
|
$system = $solrObject['system'];
|
|
|
|
print_r($header);
|
|
|
|
print_r($system);
|
|
|
|
?>
|