Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

sphinxclient(3) [php man page]

SPHINXCLIENT(3) 							 1							   SPHINXCLIENT(3)

The SphinxClient class

INTRODUCTION
The SphinxClient class provides object-oriented interface to Sphinx. CLASS SYNOPSIS
SphinxClient SphinxClient Methods o public int SphinxClient::addQuery (string $query, [string $index = "*"], [string $comment = ""]) o public array SphinxClient::buildExcerpts (array $docs, string $index, string $words, [array $opts]) o public array SphinxClient::buildKeywords (string $query, string $index, bool $hits) o public bool SphinxClient::close (void ) o public SphinxClient::__construct (void ) o public string SphinxClient::escapeString (string $string) o public string SphinxClient::getLastError (void ) o public string SphinxClient::getLastWarning (void ) o public bool SphinxClient::open (void ) o public array SphinxClient::query (string $query, [string $index = "*"], [string $comment = ""]) o public void SphinxClient::resetFilters (void ) o public void SphinxClient::resetGroupBy (void ) o public array SphinxClient::runQueries (void ) o public bool SphinxClient::setArrayResult (bool $array_result = false) o public bool SphinxClient::setConnectTimeout (float $timeout) o public bool SphinxClient::setFieldWeights (array $weights) o public bool SphinxClient::setFilter (string $attribute, array $values, [bool $exclude = false]) o public bool SphinxClient::setFilterFloatRange (string $attribute, float $min, float $max, [bool $exclude = false]) o public bool SphinxClient::setFilterRange (string $attribute, int $min, int $max, [bool $exclude = false]) o public bool SphinxClient::setGeoAnchor (string $attrlat, string $attrlong, float $latitude, float $longitude) o public bool SphinxClient::setGroupBy (string $attribute, int $func, [string $groupsort = "@group desc"]) o public bool SphinxClient::setGroupDistinct (string $attribute) o public bool SphinxClient::setIDRange (int $min, int $max) o public bool SphinxClient::setIndexWeights (array $weights) o public bool SphinxClient::setLimits (int $offset, int $limit, [int $max_matches], [int $cutoff]) o public bool SphinxClient::setMatchMode (int $mode) o public bool SphinxClient::setMaxQueryTime (int $qtime) o public bool SphinxClient::setOverride (string $attribute, int $type, array $values) o public bool SphinxClient::setRankingMode (int $ranker) o public bool SphinxClient::setRetries (int $count, [int $delay]) o public bool SphinxClient::setSelect (string $clause) o public bool SphinxClient::setServer (string $server, int $port) o public bool SphinxClient::setSortMode (int $mode, [string $sortby]) o public array SphinxClient::status (void ) o public int SphinxClient::updateAttributes (string $index, array $attributes, array $values, [bool $mva = false]) PHP Documentation Group SPHINXCLIENT(3)

Check Out this Related Man Page

DOMATTR(3)								 1								DOMATTR(3)

The DOMAttr class

INTRODUCTION
DOMAttr represents an attribute in the DOMElement object. CLASS SYNOPSIS
DOMAttr DOMAttrextends DOMNode Properties o publicreadonly string$name o publicreadonly DOMElement$ownerElement o publicreadonly bool$schemaTypeInfo o publicreadonly bool$specified o public string$value Methods o public DOMAttr::__construct (string $name, [string $value]) o public bool DOMAttr::isId (void ) Inherited methods o public DOMNode DOMNode::appendChild (DOMNode $newnode) o public string DOMNode::C14N ([bool $exclusive], [bool $with_comments], [array $xpath], [array $ns_prefixes]) o public int DOMNode::C14NFile (string $uri, [bool $exclusive], [bool $with_comments], [array $xpath], [array $ns_prefixes]) o public DOMNode DOMNode::cloneNode ([bool $deep]) o public int DOMNode::getLineNo (void ) o public string DOMNode::getNodePath (void ) o public bool DOMNode::hasAttributes (void ) o public bool DOMNode::hasChildNodes (void ) o public DOMNode DOMNode::insertBefore (DOMNode $newnode, [DOMNode $refnode]) o public bool DOMNode::isDefaultNamespace (string $namespaceURI) o public bool DOMNode::isSameNode (DOMNode $node) o public bool DOMNode::isSupported (string $feature, string $version) o public string DOMNode::lookupNamespaceURI (string $prefix) o public string DOMNode::lookupPrefix (string $namespaceURI) o public void DOMNode::normalize (void ) o public DOMNode DOMNode::removeChild (DOMNode $oldnode) o public DOMNode DOMNode::replaceChild (DOMNode $newnode, DOMNode $oldnode) PROPERTIES
o $name -The name of the attribute o $ownerElement -The element which contains the attribute o $schemaTypeInfo -Not implemented yet, always is NULL o $specified -Not implemented yet, always is NULL o $value -The value of the attribute SEE ALSO
oW3C specification of Attr PHP Documentation Group DOMATTR(3)
Man Page