--TEST-- SolrDocument::clear - Remove all fields from the document --FILE-- check = 1; var_dump($doc->getFieldCount()); $doc->clear(); var_dump($doc->getFieldCount()); ?> --EXPECTF-- int(1) int(0)