Php/docs/class.solrobject
来自菜鸟教程
(PECL solr >= 0.9.2)
简介
This is an object whose properties can also by accessed using the array syntax. All its properties are read-only.
类摘要
final SolrObject implements ArrayAccess {
public __construct ( )
public __destruct ( ) : void
public getPropertyNames ( ) : array
public offsetExists
( string $property_name
) : bool
public offsetSet
( string $property_name
, string $property_value
) : void
public offsetUnset
( string $property_name
) : void
}
Table of Contents
- SolrObject::__construct — Creates Solr object
- SolrObject::__destruct — Destructor
- SolrObject::getPropertyNames — Returns an array of all the names of the properties
- SolrObject::offsetExists — Checks if the property exists
- SolrObject::offsetGet — Used to retrieve a property
- SolrObject::offsetSet — Sets the value for a property
- SolrObject::offsetUnset — Unsets the value for the property
/* 方法 */