mirror of
https://github.com/php/pecl-search_engine-solr.git
synced 2026-03-23 22:52:07 +01:00
17 lines
237 B
PHP
17 lines
237 B
PHP
--TEST--
|
|
SolrParams::addParam()
|
|
--FILE--
|
|
<?php
|
|
|
|
$params = new SolrModifiableParams();
|
|
|
|
$params
|
|
->addParam('fq', 'popularity:[10 TO *]')
|
|
->addParam('fq', 'section:0')
|
|
;
|
|
|
|
echo $params;
|
|
?>
|
|
--EXPECTF--
|
|
fq=popularity:[10 TO *]&fq=section:0
|