SolrObject::offsetUnset

(PECL solr >= 0.9.2) Unsets the value for the property public void SolrObject::offsetUnset ( string $property_name ) Unsets the value for the property. This is used when the object is treated as an array. This object is read-only. This should never be attempted. Parameters: property_name The name of the property. Returns: Returns TRUE on succ

SolrObject::offsetSet

(PECL solr >= 0.9.2) Sets the value for a property public void SolrObject::offsetSet ( string $property_name, string $property_value ) Sets the value for a property. This is used when the object is treated as an array. This object is read-only. This should never be attempted. Parameters: property_name The name of the property. property_value

SolrObject::offsetGet

(PECL solr >= 0.9.2) Used to retrieve a property public mixed SolrObject::offsetGet ( string $property_name ) Used to get the value of a property. This is used when the object is treated as an array. Parameters: property_name Name of the property. Returns: Returns the property value.

SolrObject::offsetExists

(PECL solr >= 0.9.2) Checks if the property exists public bool SolrObject::offsetExists ( string $property_name ) Checks if the property exists. This is used when the object is treated as an array. Parameters: property_name The name of the property. Returns: Returns TRUE on success or FALSE on failure.

SolrObject::getPropertyNames

(PECL solr >= 0.9.2) Returns an array of all the names of the properties public array SolrObject::getPropertyNames ( void ) Returns an array of all the names of the properties Returns: Returns an array.

SolrObject::__destruct

(PECL solr >= 0.9.2) Destructor public void SolrObject::__destruct ( void ) The destructor Returns: None.

SolrObject::__construct

(PECL solr >= 0.9.2) Creates Solr object public SolrObject::__construct ( void ) Creates Solr object. Returns: None Examples: SolrObject::__construct() example <?php /* ... */ ?> The above example will output something similar to: ...

SolrDocumentField::__destruct

(PECL solr >= 0.9.2) Destructor public void SolrDocumentField::__destruct ( void ) Destructor. Returns: None.

SolrDocumentField::__construct

(PECL solr >= 0.9.2) Constructor public SolrDocumentField::__construct ( void ) Constructor. Returns: None.

SolrDocument::valid

(PECL solr >= 0.9.2) Checks if the current position internally is still valid public bool SolrDocument::valid ( void ) Checks if the current position internally is still valid. It is used during foreach operations. Returns: Returns TRUE on success and FALSE if the current position is no longer valid.