openssl_private_decrypt

(PHP 4 >= 4.0.6, PHP 5, PHP 7) Decrypts data with private key bool openssl_private_decrypt ( string $data, string &$decrypted, mixed $key [, int $padding = OPENSSL_PKCS1_PADDING ] ) openssl_private_decrypt() decrypts data that was previous encrypted via openssl_public_encrypt() and stores the result into decrypted. You can use this function e.g. to decrypt data which were supposed only to you. Par

OAuth::__construct

(PECL OAuth >= 0.99.1) Create a new OAuth object public OAuth::__construct ( string $consumer_key, string $consumer_secret [, string $signature_method = OAUTH_SIG_METHOD_HMACSHA1 [, int $auth_type = 0 ]] ) Creates a new OAuth object Parameters: consumer_key The consumer key provided by the service provider. consumer_secret The cons

openssl_private_encrypt

(PHP 4 >= 4.0.6, PHP 5, PHP 7) Encrypts data with private key bool openssl_private_encrypt ( string $data, string &$crypted, mixed $key [, int $padding = OPENSSL_PKCS1_PADDING ] ) openssl_private_encrypt() encrypts data with private key and stores the result into crypted. Encrypted data can be decrypted via openssl_public_decrypt(). This function can be used e.g. to sign data (or its hash) to prove that it is not

MongoCommandCursor::dead

(PECL mongo >=1.5.0) Checks if there are results that have not yet been sent from the database public bool MongoCommandCursor::dead ( void ) This method checks whether the MongoCommandCursor cursor has been exhausted and the database has no more results to send to the client. A cursor being "dead" does not necessarily mean that there are no more results available for iteration. Returns: Returns

MongoPool::setSize

(PECL mongo >= 1.2.3) Set the size for future connection pools. public static bool MongoPool::setSize ( int $size ) Sets the max number of connections new pools will be able to create. Parameters: size The max number of connections future pools will be able to create. Negative numbers mean that the pool will spawn an infinite number of connections.

hw_api::find

(PHP 4, PHP 5 < 5.2.0, PECL hwapi SVN) Search for objects array hw_api::find ( array $parameter ) This functions searches for objects either by executing a key or/and full text query. The found objects can further be filtered by an optional object query. They are sorted by their importance. The second search operation is relatively slow and its result can be limited to a certain number of hits. This allows to perform an i

ReflectionProperty::getDocComment

(PHP 5 >= 5.1.0, PHP 7) Gets the property doc comment public string ReflectionProperty::getDocComment ( void ) Gets the doc comment for a property. Returns: The property doc comment. Examples: ReflectionProperty::getDocComment() example <?php class Str {     /**      * @var int  The length of the string      */     

xdiff_file_patch_binary

(PECL xdiff >= 0.2.0) Alias of xdiff_file_bpatch bool xdiff_file_patch_binary ( string $file, string $patch, string $dest ) Patches a file with a binary patch and stores the result in a file dest. This function accepts patches created both via xdiff_file_bdiff() or xdiff_file_rabdiff() functions or their string counterparts. Starting with version 1.5.0 this function is an alias of xdiff_file_bpatch(). P

xdiff_string_bdiff_size

(PECL xdiff >= 1.5.0) Read a size of file created by applying a binary diff int xdiff_string_bdiff_size ( string $patch ) Returns a size of a result file that would be created after applying binary patch to the original file. Parameters: patch The binary patch created by xdiff_string_bdiff() or xdiff_string_rabdiff() function. Returns: Returns

UConverter::__construct

(PHP 5.5.0, PHP 7, PECL >= 3.0.0a1) Create UConverter object public UConverter::__construct ([ string $destination_encoding [, string $source_encoding ]] ) Parameters: destination_encoding source_encoding Returns: This function is currently not documented; only its argument list