switch

(PHP 4, PHP 5, PHP 7) Examples: switch structure The following two examples are two different ways to write the same thing, one using a series of if and elseif statements, and the other using the switch statement: <?php if ($i == 0) {     echo "i equals 0"; } elseif ($i == 1) {     echo "i equals 1"; } elseif ($i == 2) {     echo "i equals 2"; } switch ($i) {     case 0:         ech

SWFVideoStream::getNumFrames

(PHP 5.0.5-5.3.0, PHP 7, PECL ming SVN) Returns the number of frames in the video int SWFVideoStream::getNumFrames ( void ) This function returns the number of video-frames of a SWFVideoStream. Returns: Returns the number of frames, as an integer

ifxus_free_slob

(PHP 4, PHP <=5.2.0) Deletes the slob object bool ifxus_free_slob ( int $bid ) Deletes the slob object. Parameters: bid An existing slob id. Returns: Returns TRUE on success or FALSE on failure. See also: ifxus_close_slob() -

SolrQuery::setGroupLimit

(PECL solr >= 2.2.0) Specifies the number of results to return for each group. The server default value is 1. public SolrQuery SolrQuery::setGroupLimit ( integer $value ) Specifies the number of results to return for each group. The server default value is 1. Parameters: value Specifies the number of results to return for each group. The server default value is 1.

mb_ereg_replace_callback

(PHP 5 >= 5.4.1, PHP 7) Perform a regular expresssion seach and replace with multibyte support using a callback string mb_ereg_replace_callback ( string $pattern, callable $callback, string $string [, string $option = "msr" ] ) Scans string for matches to pattern, then replaces the matched text with the output of callback function. The behavior of this function is almost identical to mb_ereg_replace(), except for the

Yaf_Route_Simple::assemble

(Yaf >=2.3.0) Assemble a url public string Yaf_Route_Simple::assemble ( array $info [, array $query ] ) Assemble a url. Parameters: info Assemble a url. query Assemble a url. Returns: Examples: Yaf_Route_Simple::assemble() example <

CairoContext::paint

(PECL cairo >= 0.1.0) The paint purpose public void CairoContext::paint ( void ) Object oriented style (method): Procedural style: void cairo_paint ( CairoContext $context ) Description here. Parameters: context Description... Returns: Description... This function is currently not documented; only its arg

msession_disconnect

(PHP 4 >= 4.2.0, PHP 5 <= 5.1.2) Close connection to msession server void msession_disconnect ( void ) This function is currently not documented; only its argument list is available.

stream_socket_server

(PHP 5, PHP 7) Create an Internet or Unix domain server socket resource stream_socket_server ( string $local_socket [, int &$errno [, string &$errstr [, int $flags = STREAM_SERVER_BIND | STREAM_SERVER_LISTEN [, resource $context ]]]] ) Creates a stream or datagram socket on the specified local_socket. This function only creates a socket, to begin accepting connections use stream_socket_accept(). P

Imagick::getImageOrientation

(PECL imagick 2.0.0) Gets the image orientation int Imagick::getImageOrientation ( void ) Gets the image orientation. The return value is one of the orientation constants. Returns: Returns an int on success. Exception: Throws ImagickException on error.