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

REFLECTIONOBJECT(3)							 1						       REFLECTIONOBJECT(3)

The ReflectionObject class

INTRODUCTION
The ReflectionObject class reports information about an object. CLASS SYNOPSIS
ReflectionObject ReflectionObjectextends ReflectionClassReflector Constants o const integer$ReflectionObject::IS_IMPLICIT_ABSTRACT16 o const integer$ReflectionObject::IS_EXPLICIT_ABSTRACT32 o const integer$ReflectionObject::IS_FINAL64 Properties o public$name Methods o public ReflectionObject::__construct (object $argument) o publicstatic string ReflectionObject::export (string $argument, [bool $return]) Inherited methods o public ReflectionClass::__construct (mixed $argument) o publicstatic string ReflectionClass::export (mixed $argument, [bool $return = false]) o public mixed ReflectionClass::getConstant (string $name) o public array ReflectionClass::getConstants (void ) o public ReflectionMethod ReflectionClass::getConstructor (void ) o public array ReflectionClass::getDefaultProperties (void ) o public string ReflectionClass::getDocComment (void ) o public int ReflectionClass::getEndLine (void ) o public ReflectionExtension ReflectionClass::getExtension (void ) o public string ReflectionClass::getExtensionName (void ) o public string ReflectionClass::getFileName (void ) o public array ReflectionClass::getInterfaceNames (void ) o public array ReflectionClass::getInterfaces (void ) o public ReflectionMethod ReflectionClass::getMethod (string $name) o public array ReflectionClass::getMethods ([int $filter]) o public int ReflectionClass::getModifiers (void ) o public string ReflectionClass::getName (void ) o public string ReflectionClass::getNamespaceName (void ) o public object ReflectionClass::getParentClass (void ) o public array ReflectionClass::getProperties ([int $filter]) o public ReflectionProperty ReflectionClass::getProperty (string $name) o public string ReflectionClass::getShortName (void ) o public int ReflectionClass::getStartLine (void ) o public array ReflectionClass::getStaticProperties (void ) o public mixed ReflectionClass::getStaticPropertyValue (string $name, [mixed &$def_value]) o public array ReflectionClass::getTraitAliases (void ) o public array ReflectionClass::getTraitNames (void ) o public array ReflectionClass::getTraits (void ) o public bool ReflectionClass::hasConstant (string $name) o public bool ReflectionClass::hasMethod (string $name) o public bool ReflectionClass::hasProperty (string $name) o public bool ReflectionClass::implementsInterface (string $interface) o public bool ReflectionClass::inNamespace (void ) o public bool ReflectionClass::isAbstract (void ) o public bool ReflectionClass::isCloneable (void ) o public bool ReflectionClass::isFinal (void ) o public bool ReflectionClass::isInstance (object $object) o public bool ReflectionClass::isInstantiable (void ) o public bool ReflectionClass::isInterface (void ) o public bool ReflectionClass::isInternal (void ) o public bool ReflectionClass::isIterateable (void ) o public bool ReflectionClass::isSubclassOf (string $class) o public bool ReflectionClass::isTrait (void ) o public bool ReflectionClass::isUserDefined (void ) o public object ReflectionClass::newInstance (mixed $args, [mixed $...]) o public object ReflectionClass::newInstanceArgs ([array $args]) o public object ReflectionClass::newInstanceWithoutConstructor (void ) o public void ReflectionClass::setStaticPropertyValue (string $name, string $value) o public string ReflectionClass::__toString (void ) PROPERTIES
o $name - Name of the object's class. Read-only, throws ReflectionException in attempt to write. PHP Documentation Group REFLECTIONOBJECT(3)
Man Page