SwishSearch::setPhraseDelimiter

(PECL swish >= 0.1.0) Set the phrase delimiter void SwishSearch::setPhraseDelimiter ( string $delimiter ) Parameters: delimiter Phrase delimiter character. The default delimiter is double-quotes. Returns: No value is returned. This function is EXPERIMENTAL. The behaviour of this function, its name, and surro

EventBufferEvent::free

(PECL event >= 1.2.6-beta) Free a buffer event public void EventBufferEvent::free ( void ) Free resources allocated by buffer event. Usually there is no need to call this method, since normally it is done within internal object destructors. However, sometimes we have a long-time script allocating lots of instances, or a script with a heavy memory usage, where we need to free resources as soon as possible. In such cases

Memcache::getStats

(PECL memcache >= 0.2.0) Get statistics of the server array Memcache::getStats ([ string $type [, int $slabid [, int $limit = 100 ]]] ) Memcache::getStats() returns an associative array with server's statistics. Array keys correspond to stats parameters and values to parameter's values. Also you can use memcache_get_stats() function. Parameters: type The type of stati

HaruPage::setHeight

(PECL haru >= 0.0.1) Set height of the page bool HaruPage::setHeight ( float $height ) Defines height of the page. Parameters: height The defined height for the page. Returns: Returns TRUE on success. Exception: Throws a HaruException on error. See also:

newt_listbox_set_current

(PECL newt >= 0.1) void newt_listbox_set_current ( resource $listbox, int $num ) Parameters: listbox num Returns: No value is returned. This function is currently not documented; only its argument list is available.

ps_setpolydash

(PECL ps >= 1.1.0) Sets appearance of a dashed line bool ps_setpolydash ( resource $psdoc, float $arr ) Sets the length of the black and white portions of a dashed line. ps_setpolydash() is used to set more complicated dash patterns. Parameters: psdoc Resource identifier of the postscript file as returned by ps_new(). arr arr is a li

PDF_open_image

(PHP 4 >= 4.0.5, PECL pdflib >= 1.0.0) Use image data [deprecated] int PDF_open_image ( resource $p, string $imagetype, string $source, string $data, int $length, int $width, int $height, int $components, int $bpc, string $params ) Uses image data from a variety of data sources. This function is deprecated since PDFlib version 5, use virtual files and PDF_load_image() instead.

Event::set

(PECL libevent >= 0.0.1) Re-configures event public bool Event::set ( EventBase $base , mixed $fd [, int $what [, callable $cb [, mixed $arg ]]] ) Re-configures event. Note, this function doesn't invoke obsolete libevent's event_set. It calls event_assign instead. Parameters: base The event base to associate the event with. fd A

ps_setdash

(PECL ps >= 1.1.0) Sets appearance of a dashed line bool ps_setdash ( resource $psdoc, float $on, float $off ) Sets the length of the black and white portions of a dashed line. Parameters: psdoc Resource identifier of the postscript file as returned by ps_new(). on The length of the dash. off The l

Throwable::getLine

(PHP 7) Gets the line on which the object was instantiated abstract public int Throwable::getLine ( void ) Returns the line number where the thrown object was instantiated. Returns: Returns the line number where the thrown object was instantiated. See also: Exception::getLine() -