📁 File Manager Pro
v10.0.2 | PHP: 8.1.34
Server: LiteSpeed
2026-06-29 07:50:54
📂
/
/
opt
/
alt
/
tests
/
alt-php82-pecl-solr_2.9.3-1.el8
/
tests
✏️
Editing: 056.solrinputdocument_toArray.phpt
--TEST-- SolrInputDocument::toArray - Array conversion --FILE-- <?php require_once "bootstrap.inc"; $doc = new SolrInputDocument(); $doc->addField('field_1', 4, 3.4); $doc->addField('field_2', 1); print_r($doc->toArray()); ?> --EXPECT-- Array ( [document_boost] => 0 [field_count] => 2 [fields] => Array ( [0] => SolrDocumentField Object ( [name] => field_1 [boost] => 3.4 [values] => Array ( [0] => 4 ) ) [1] => SolrDocumentField Object ( [name] => field_2 [boost] => 0 [values] => Array ( [0] => 1 ) ) ) )
💾 Save Changes
❌ Cancel