gmp_export

(PHP 5, PHP 7 >= 5.6.1) Export to a binary string string gmp_export ( GMP $gmpnumber, integer $word_size, integer $options ) Export a GMP number to a binary string Parameters: gmpnumber The GMP number being exported word_size Default value is 1. The number of bytes in each chunk of binary data. This is mainly used in conjunction with

maxdb_stmt_send_long_data

(PECL maxdb 1.0) Send data in blocks bool maxdb_stmt_send_long_data ( resource $stmt, int $param_nr, string $data ) Procedural style Object oriented style bool maxdb_stmt::stmt_send_long_data ( int $param_nr , string $data ) Allows to send parameter data to the server in pieces (or chunks). This function can be called multiple times to send the parts of a character or binary data value for a column, which must be one of the

DirectoryIterator::getInode

(PHP 5, PHP 7) Get inode for the current DirectoryIterator item public int DirectoryIterator::getInode ( void ) Get the inode number for the current DirectoryIterator item. Returns: Returns the inode number for the file. Examples: DirectoryIterator::getInode() example This example displays the inode number for the director

cubrid_lob2_new

(PECL CUBRID >= 8.4.1) Create a lob object. resource cubrid_lob2_new ([ resource $conn_identifier [, string $type = "BLOB" ]] ) The cubrid_lob2_new() function is used to create a lob object (both BLOB and CLOB). This function should be used before you bind a lob object. Parameters: conn_identifier Connection identifier. If the connection identifier is not specified, th

gupnp_service_action_get

(PECL gupnp >= 0.1.0) Retrieves the specified action arguments mixed gupnp_service_action_get ( resource $action, string $name, int $type ) Retrieves the specified action arguments. Parameters: action A service action identifier. name The name of the variable to retrieve. type The type of the varia

odbc_pconnect

(PHP 4, PHP 5, PHP 7) Open a persistent database connection resource odbc_pconnect ( string $dsn, string $user, string $password [, int $cursor_type ] ) Opens a persistent database connection. This function is much like odbc_connect(), except that the connection is not really closed when the script has finished. Future requests for a connection with the same dsn, user, password combination (via odbc_connect() and odbc_pcon

socket_listen

(PHP 4 >= 4.1.0, PHP 5, PHP 7) Listens for a connection on a socket bool socket_listen ( resource $socket [, int $backlog = 0 ] ) After the socket socket has been created using socket_create() and bound to a name with socket_bind(), it may be told to listen for incoming connections on socket. socket_listen() is applicable only to sockets of type SOCK_STREAM or SOCK_SEQPACKET. Parameters:

OAuthProvider::setRequestTokenPath

(PECL OAuth >= 1.0.0) Set request token path final public bool OAuthProvider::setRequestTokenPath ( string $path ) Sets the request tokens path. Parameters: path The path. Returns: TRUE This function is currently not documented; only its argument list is available.

array_intersect

(PHP 4 >= 4.0.1, PHP 5, PHP 7) Computes the intersection of arrays array array_intersect ( array $array1, array $array2 [, array $... ] ) array_intersect() returns an array containing all the values of array1 that are present in all the arguments. Note that keys are preserved. Parameters: array1 The array with master values to check. array2

opendir

(PHP 4, PHP 5, PHP 7) Open directory handle resource opendir ( string $path [, resource $context ] ) Opens up a directory handle to be used in subsequent closedir(), readdir(), and rewinddir() calls. Parameters: path The directory path that is to be opened context For a description of the context parameter, refer to the streams section