Viewing File: /opt/alt/tests/alt-php84-pecl-solr_2.7.0-2.el8/tests/193.solrparams_getparams.phpt

--TEST--
SolrParams::getParams()
--FILE--
<?php

$params = new SolrModifiableParams();

$params
	->set('q', 'lucene')
	->addParam('fq', 'popularity:[10 TO *]')
	->addParam('fq', 'section:0')
;

var_dump($params->getParams());
?>
--EXPECT--
array(2) {
  ["q"]=>
  array(1) {
    [0]=>
    string(6) "lucene"
  }
  ["fq"]=>
  array(2) {
    [0]=>
    string(20) "popularity:[10 TO *]"
    [1]=>
    string(9) "section:0"
  }
}
Back to Directory File Manager
<