XsltProcessor::getSecurityPrefs

(PHP >= 5.4.0) Get security preferences public int XsltProcessor::getSecurityPrefs ( void ) Gets the security preferences. Returns: A bitmask consisting of XSL_SECPREF_READ_FILE, XSL_SECPREF_WRITE_FILE, XSL_SECPREF_CREATE_DIRECTORY, XSL_SECPREF_READ_NETWORK, XSL_SECPREF_WRITE_NETWORK.

curl_multi_add_handle

(PHP 5, PHP 7) Add a normal cURL handle to a cURL multi handle int curl_multi_add_handle ( resource $mh, resource $ch ) Adds the ch handle to the multi handle mh Parameters: mh A cURL multi handle returned by curl_multi_init(). ch A cURL handle returned by curl_init(). Returns: Returns 0 on success, or one of the C

odbc_errormsg

(PHP 4 >= 4.0.5, PHP 5, PHP 7) Get the last error message string odbc_errormsg ([ resource $connection_id ] ) Returns a string containing the last ODBC error message, or an empty string if there has been no errors. Parameters: connection_id The ODBC connection identifier, see odbc_connect() for details. Returns: If connection_id is specified, th

maxdb_stmt_error

(PECL maxdb >= 1.0) Returns a string description for last statement error string maxdb_stmt_error ( resource $stmt ) Procedural style Object oriented style string $maxdb_stmt->error; For the statement specified by stmt, maxdb_stmt_error() returns a containing the error message for the most recently invoked statement function that can succeed or fail. Returns: A string that describes the err

Imagick::getImageAttribute

(No version information available, might only be in Git) Description public string Imagick::getImageAttribute ( string $key ) Returns a named attribute. Parameters: key The key of the attribute to get. Returns:

odbc_commit

(PHP 4, PHP 5, PHP 7) Commit an ODBC transaction bool odbc_commit ( resource $connection_id ) Commits all pending transactions on the connection. Parameters: connection_id The ODBC connection identifier, see odbc_connect() for details. Returns: Returns TRUE on success or FALSE on failure.

EventBuffer::enableLocking

(PECL event >= 1.2.6-beta) public void EventBuffer::enableLocking ( void ) Enable locking on an EventBuffer so that it can safely be used by multiple threads at the same time. When locking is enabled, the lock will be held when callbacks are invoked. This could result in deadlock if you aren't careful. Plan accordingly! Returns: No value is returned.

db2_tables

(PECL ibm_db2 >= 1.0.0) Returns a result set listing the tables and associated metadata in a database resource db2_tables ( resource $connection [, string $qualifier [, string $schema [, string $table-name [, string $table-type ]]]] ) Returns a result set listing the tables and associated metadata in a database. Parameters: connection A valid connection to an IBM DB2

quoted_printable_decode

(PHP 4, PHP 5, PHP 7) Convert a quoted-printable string to an 8 bit string string quoted_printable_decode ( string $str ) This function returns an 8-bit binary string corresponding to the decoded quoted printable string (according to » RFC2045, section 6.7, not » RFC2821, section 4.5.2, so additional periods are not stripped from the beginning of line). This function is similar to imap_qprint(), except this one does not re

shell_exec

(PHP 4, PHP 5, PHP 7) Execute command via shell and return the complete output as a string string shell_exec ( string $cmd ) This function is identical to the backtick operator. Parameters: cmd The command that will be executed. Returns: The output from the executed command or NULL if an error occurred or the command produces no output. Note: