m_verifysslcert

(PHP 4 >= 4.3.9, PHP 5 <= 5.0.5, PECL mcve >= 1.0.0) Set whether or not to verify the server ssl certificate bool m_verifysslcert ( resource $conn, int $tf ) Parameters: conn An MCVE_CONN resource returned by m_initengine(). tf An MCVE_CONN resource returned by m_initengine(). Returns:

stream_get_contents

(PHP 5, PHP 7) Reads remainder of a stream into a string string stream_get_contents ( resource $handle [, int $maxlength = -1 [, int $offset = -1 ]] ) Identical to file_get_contents(), except that stream_get_contents() operates on an already open stream resource and returns the remaining contents in a string, up to maxlength bytes and starting at the specified offset. Parameters: ha

fann_cascadetrain_on_data

(PECL fann >= 1.0.0) Trains on an entire dataset, for a period of time using the Cascade2 training algorithm bool fann_cascadetrain_on_data ( resource $ann, resource $data, int $max_neurons, int $neurons_between_reports, float $desired_error ) The cascade output change fraction is a number between 0 and 1 determining how large a fraction the fann_get_MSE() value should change within fann_get_cascade_output_stagnation_epoc

streamWrapper::stream_flush

(PHP 4 >= 4.3.2, PHP 5, PHP 7) Flushes the output public bool streamWrapper::stream_flush ( void ) This method is called in response to fflush() and when the stream is being closed while any unflushed data has been written to it before. If you have cached data in your stream but not yet stored it into the underlying storage, you should do so now. Returns: Should return TRUE if the cached data

ReflectionZendExtension::getAuthor

(PHP >= 5.4.0) Gets author public string ReflectionZendExtension::getAuthor ( void ) Returns: This function is currently not documented; only its argument list is available.

EventBuffer::lock

(PECL event >= 1.2.6-beta) Acquires a lock on buffer public void EventBuffer::lock ( void ) Acquires a lock on buffer. Can be used in pair with EventBuffer::unlock() to make a set of operations atomic, i.e. thread-safe. Note, it is not needed to lock buffers for individual operations. When locking is enabled(see EventBuffer::enableLocking() ), individual operations on event buffers are already atomic.

cubrid_put

(PECL CUBRID >= 8.3.0) Update a column using OID int cubrid_put ( resource $conn_identifier, string $oid [, string $attr ], mixed $value ) The cubrid_put() function is used to update an attribute of the instance of the given oid. You can update single attribute by using string data type to set attr. In such case, you can use integer, floating point or string type data for the value argument. To update multiple number of

curl_multi_setopt

(PHP 5 >= 5.5.0, PHP 7) Set an option for the cURL multi handle bool curl_multi_setopt ( resource $mh, int $option, mixed $value ) Parameters: mh option One of the CURLMOPT_* constants. value The value to be set on option. value should be an int for the following values of the option parameter: Opti

ImagickDraw::getFont

(PECL imagick 2.0.0) Returns the font string ImagickDraw::getFont ( void ) Returns a string specifying the font used when annotating with text. Returns: Returns a string on success and false if no font is set. This function is currently not documented; only its argument list is available.

DirectoryIterator::isFile

(PHP 5, PHP 7) Determine if current DirectoryIterator item is a regular file public bool DirectoryIterator::isFile ( void ) Determines if the current DirectoryIterator item is a regular file. Returns: Returns TRUE if the file exists and is a regular file (not a link or dir), otherwise FALSE Examples: DirectoryIterator::isFile() example