📁 File Manager Pro
v10.0.2 | PHP: 8.1.34
Server: LiteSpeed
2026-06-29 07:08:50
📂
/
/
opt
/
alt
/
tests
/
alt-php83-pecl-solr_2.9.3-1.el8
/
tests
✏️
Editing: 031.solrdocument_clear.phpt
--TEST-- SolrDocument::clear - Remove all fields from the document --FILE-- <?php require_once "bootstrap.inc"; $fixtureXml = file_get_contents(EXAMPLE_RESPONSE_XML_2); $response = SolrUtils::digestXmlResponse($fixtureXml, SolrResponse::PARSE_SOLR_DOC); $doc = new SolrDocument(); $doc->check = 1; var_dump($doc->getFieldCount()); $doc->clear(); var_dump($doc->getFieldCount()); ?> --EXPECTF-- int(1) int(0)
💾 Save Changes
❌ Cancel