SolrDisMaxQuery::useDisMaxQueryParser

(No version information available, might only be in Git) Switch QueryParser to be DisMax Query Parser public SolrDisMaxQuery SolrDisMaxQuery::useDisMaxQueryParser ( void ) Switch QueryParser to be DisMax Query Parser Returns: SolrDisMaxQuery Examples: SolrDisMaxQuery::useDisMaxQueryParser() example <?php $dismaxQuery 

xattr_get

(PECL xattr >= 0.9.0) Get an extended attribute string xattr_get ( string $filename, string $name [, int $flags = 0 ] ) This function gets the value of an extended attribute of a file. Extended attributes have two different namespaces: user and root. The user namespace is available to all users, while the root namespace is available only to users with root privileges. xattr operates on the user namespace by default, b

SolrClient::getOptions

(PECL solr >= 0.9.6) Returns the client options set internally public array SolrClient::getOptions ( void ) Returns the client options set internally. Very useful for debugging. The values returned are readonly and can only be set when the object is instantiated. Returns: Returns an array containing all the options for the SolrClient object set internally.

ImagickPixel::__construct

(PECL imagick 2.0.0) The ImagickPixel constructor ImagickPixel::__construct ([ string $color ] ) Constructs an ImagickPixel object. If a color is specified, the object is constructed and then initialised with that color before being returned. Parameters: color The optional color string to use as the initial value of this object. Returns: Returns

mysqli::refresh

(PHP 5 <= 5.3.0) Refreshes public bool mysqli::refresh ( int $options ) Object oriented style Procedural style int mysqli_refresh ( resource $link , int $options ) Flushes tables or caches, or resets the replication server information. Parameters: link Procedural style only: A link identifier returned by mysqli_connect() or mysqli_init() options

MongoCursor::doQuery

(PECL mongo >=0.9.0 <1.6.0) Execute the query. protected void MongoCursor::doQuery ( void ) This function actually queries the database. All queries and commands go through this function. Thus, this function can be overridden to provide custom query handling. This handles serializing your query, sending it to the database, receiving a response, and deserializing it. Thus, if you are planning to override this, your c

SoapHeader::SoapHeader

(PHP 5 >= 5.0.1, PHP 7) SoapHeader constructor SoapHeader::SoapHeader ( string $namespace, string $name [, mixed $data [, bool $mustunderstand = false [, string $actor ]]] ) Constructs a new SoapHeader object. Parameters: namespace The namespace of the SOAP header element. name The name of the SoapHeader object.

SplObjectStorage::offsetSet

(PHP 5 >= 5.3.0, PHP 7) Associates data to an object in the storage public void SplObjectStorage::offsetSet ( object $object [, mixed $data = NULL ] ) Associate data to an object in the storage. Note: SplObjectStorage::offsetSet() is an alias of SplObjectStorage::attach(). Parameters: object The object to associate data with. data

RarArchive::getEntry

(PECL rar >= 2.0.0) Get entry object from the RAR archive public RarEntry RarArchive::getEntry ( string $entryname ) Object oriented style (method): Procedural style: RarEntry rar_entry_get ( RarArchive $rarfile , string $entryname ) Get entry object (file or directory) from the RAR archive. Note: You can also get entry objects using RarArchive::getEntries(). Note that a RAR archive can have multiple entries with the

imageconvolution

(PHP 5 >= 5.1.0, PHP 7) Apply a 3x3 convolution matrix, using coefficient and offset bool imageconvolution ( resource $image, array $matrix, float $div, float $offset ) Applies a convolution matrix on the image, using the given coefficient and offset. Parameters: image An image resource, returned by one of the image creation functions, such as imagecreatetruecolor().