mysqli_stmt::get_result

(PHP 5 >= 5.3.0, PHP 7) Gets a result set from a prepared statement mysqli_result mysqli_stmt::get_result ( void ) Object oriented style Procedural style mysqli_result mysqli_stmt_get_result ( mysqli_stmt $stmt ) Call to return a result set from a prepared statement query. Parameters: stmt Procedural style only: A statement identifier returned by mysqli_stmt_init().

Imagick::setLastIterator

(PECL imagick 2.0.1) Sets the Imagick iterator to the last image bool Imagick::setLastIterator ( void ) Sets the Imagick iterator to the last image. Returns: Returns TRUE on success.

Imagick::selectiveBlurImage

(No version information available, might only be in Git) Description public void Imagick::selectiveBlurImage ( float $radius, float $sigma, float $threshold, int $CHANNEL ) Selectively blur an image within a contrast threshold. It is similar to the unsharpen mask that sharpens everything with contrast above a certain threshold. Parameters: radius Selectively blur an imag

strncasecmp

(PHP 4 >= 4.0.2, PHP 5, PHP 7) Binary safe case-insensitive string comparison of the first n characters int strncasecmp ( string $str1, string $str2, int $len ) This function is similar to strcasecmp(), with the difference that you can specify the (upper limit of the) number of characters from each string to be used in the comparison. Parameters: str1 The first string.

msql_createdb

(PHP 4, PHP 5, PHP 7) Alias of msql_create_db() This function is an alias of: msql_create_db().

setcookie

(PHP 4, PHP 5, PHP 7) Send a cookie bool setcookie ( string $name [, string $value = "" [, int $expire = 0 [, string $path = "" [, string $domain = "" [, bool $secure = false [, bool $httponly = false ]]]]]] ) setcookie() defines a cookie to be sent along with the rest of the HTTP headers. Like other headers, cookies must be sent before any output from your script (this is a protocol restriction). This requires that yo

ZMQPoll::poll

(PECL zmq >= 0.5.0) Poll the items public integer ZMQPoll::poll ( array &$readable, array &$writable [, integer $timeout = -1 ] ) Polls the items in the current poll set. The readable and writable items are returned in the readable and writable parameters. ZMQPoll::getLastErrors() can be used to check if there were errors. Parameters: readable Array where read

pg_lo_write

(PHP 4 >= 4.2.0, PHP 5, PHP 7) Write to a large object int pg_lo_write ( resource $large_object, string $data [, int $len ] ) pg_lo_write() writes data into a large object at the current seek position. To use the large object interface, it is necessary to enclose it within a transaction block. Note: This function used to be called pg_lowrite(). Parameters: large_object

trader_cdldoji

(PECL trader >= 0.2.0) Doji array trader_cdldoji ( array $open, array $high, array $low, array $close ) Parameters: open Opening price, array of real values. high High price, array of real values. low Low price, array of real values. close Closing price, array of r

DOMDocument::createCDATASection

(PHP 5, PHP 7) Create new cdata node public DOMCDATASection DOMDocument::createCDATASection ( string $data ) This function creates a new instance of class DOMCDATASection. This node will not show up in the document unless it is inserted with (e.g.) DOMNode::appendChild(). Parameters: data The content of the cdata. Returns: The new DOMCDATASection