id3_get_genre_id

(PECL id3 >= 0.1) Get the id for a genre int id3_get_genre_id ( string $genre ) id3_get_genre_id() returns the id for a genre. Parameters: genre Genre name as string. Returns: The genre id or FALSE on errors. Examples: id3_get_genre_id() example <?php $id = id3_get

gupnp_device_info_get

(PECL gupnp >= 0.1.0) Get info of root device array gupnp_device_info_get ( resource $root_device ) Get info of root device. Parameters: root_device A root device identifier, returned by gupnp_root_device_new(). Returns: Return array wich contains the information of the root device (like location, url, udn and etc).

PDF_add_note

(PHP 4 >= 4.0.5, PECL pdflib >= 1.0.0) Set annotation for current page [deprecated] bool PDF_add_note ( resource $pdfdoc, float $llx, float $lly, float $urx, float $ury, string $contents, string $title, string $icon, int $open ) Sets an annotation for the current page. Returns TRUE on success or FALSE on failure. This function is deprecated since PDFlib version 6, use PDF_create_annotation() with type=Text instead.

ImagickDraw::pathCurveToQuadraticBezierRelative

(PECL imagick 2.0.0) Draws a quadratic Bezier curve bool ImagickDraw::pathCurveToQuadraticBezierRelative ( float $x1, float $y1, float $x, float $y ) Draws a quadratic Bezier curve from the current point to (x,y) using (x1,y1) as the control point using relative coordinates. At the end of the command, the new current point becomes the final (x,y) coordinate pair used in the polybezier. Parameters:

OAuth::enableSSLChecks

(PECL OAuth >= 0.99.5) Turn on SSL checks public bool OAuth::enableSSLChecks ( void ) Turns on the usual SSL peer certificate and host checks (enabled by default). Alternatively, the sslChecks member can be set to a non-FALSE value to turn SSL checks off. Returns: TRUE Changelog: 0.99.8 The sslChecks member was added

SolrQuery::setGroupMain

(PECL solr >= 2.2.0) If true, the result of the first field grouping command is used as the main result list in the response, using group.format=simple. public SolrQuery SolrQuery::setGroupMain ( string $value ) If true, the result of the first field grouping command is used as the main result list in the response, using group.format=simple. Parameters: value If true,

PDF_get_errnum

(PECL pdflib >= 2.0.0) Get error number int PDF_get_errnum ( resource $pdfdoc ) Gets the number of the last thrown exception or the reason for a failed function call.

Cond::signal

(PECL pthreads >= 2.0.0) Signal a Condition final public static boolean Cond::signal ( long $condition ) Parameters: condition A handle returned by a previous call to Cond::create() Returns: A boolean indication of success. Examples: Condition Signalling <?php /** You 

iconv_strlen

(PHP 5, PHP 7) Returns the character count of string int iconv_strlen ( string $str [, string $charset = ini_get("iconv.internal_encoding") ] ) In contrast to strlen(), iconv_strlen() counts the occurrences of characters in the given byte sequence str on the basis of the specified character set, the result of which is not necessarily identical to the length of the string in byte. Parameters:

set_time_limit

(PHP 4, PHP 5, PHP 7) Limits the maximum execution time bool set_time_limit ( int $seconds ) Set the number of seconds a script is allowed to run. If this is reached, the script returns a fatal error. The default limit is 30 seconds or, if it exists, the max_execution_time value defined in the php.ini. When called, set_time_limit() restarts the timeout counter from zero. In other words, if the timeout is the default 30 sec