strcoll

(PHP 4 >= 4.0.5, PHP 5, PHP 7) Locale based string comparison int strcoll ( string $str1, string $str2 ) Note that this comparison is case sensitive, and unlike strcmp() this function is not binary safe. strcoll() uses the current locale for doing the comparisons. If the current locale is C or POSIX, this function is equivalent to strcmp(). Parameters: str1 The first

GearmanTask::dataSize

(PECL gearman >= 0.5.0) Get the size of returned data public int GearmanTask::dataSize ( void ) Returns the size of the data being returned for a task. Returns: The data size, or FALSE if there is no data. See also: GearmanTask::data() -

Lapack::eigenValues

(PECL lapack >= 0.1.0) This function returns the eigenvalues for a given square matrix public static array Lapack::eigenValues ( array $a [, array $left [, array $right ]] ) Calculate the eigenvalues for a square matrix, and optionally calculate the left and right eigenvectors. Parameters: a The matrix to calculate the eigenvalues for. left

openssl_x509_read

(PHP 4 >= 4.0.6, PHP 5, PHP 7) Parse an X.509 certificate and return a resource identifier for it resource openssl_x509_read ( mixed $x509certdata ) openssl_x509_read() parses the certificate supplied by x509certdata and returns a resource identifier for it. Parameters: x509certdata openssl_x509_read() parses the certificate supplied by x509certdata and returns a resou

PDF_end_font

(PECL pdflib >= 2.0.0) Terminate Type 3 font definition bool PDF_end_font ( resource $pdfdoc ) Terminates a Type 3 font definition.

msession_count

(PHP 4 >= 4.2.0, PHP 5 <= 5.1.2) Get session count int msession_count ( void ) This function is currently not documented; only its argument list is available.

mysqli::kill

(PHP 5, PHP 7) Asks the server to kill a MySQL thread bool mysqli::kill ( int $processid ) Object oriented style Procedural style bool mysqli_kill ( mysqli $link , int $processid ) This function is used to ask the server to kill a MySQL thread specified by the processid parameter. This value must be retrieved by calling the mysqli_thread_id() function. To stop a running query you should use the SQL command KILL QUERY proc

RarEntry::getCrc

(PECL rar >= 0.1) Get CRC of the entry public string RarEntry::getCrc ( void ) Returns an hexadecimal string representation of the CRC of the archive entry. Returns: Returns the CRC of the archive entry or FALSE on error. Changelog: 2.0.0 This method now returns correct values for multiple volume archives.

mcrypt_enc_get_block_size

(PHP 4 >= 4.0.2, PHP 5, PHP 7) Returns the blocksize of the opened algorithm int mcrypt_enc_get_block_size ( resource $td ) Gets the blocksize of the opened algorithm. Parameters: td The encryption descriptor. Returns: Returns the block size of the specified algorithm in bytes.

Yaf_Response_Abstract::prependBody

(Yaf >=1.0.0) The prependBody purpose public bool Yaf_Response_Abstract::prependBody ( string $content [, string $key ] ) prepend a content to a exists content block Parameters: body content string key the content key, you can set a content with a key, if you don't specific, then Yaf_Response_Abstract::DEFAULT_BODY will be used Not