CairoContext::__construct

(PECL cairo >= 0.1.0) Creates a new CairoContext public CairoContext::__construct ( CairoSurface $surface ) Creates a new CairoContext object to draw Parameters: surface A valid CairoSurface like CairoImageSurface or CairoPdfSurface Returns: A CairoContext Examples: CairoContext::_

cubrid_load_from_glo

(PECL CUBRID >= 8.3.0) Read data from a GLO instance and save it in a file int cubrid_load_from_glo ( resource $conn_identifier, string $oid, string $file_name ) The cubrid_load_from_glo() function is used to read a data from a glo instance, and saves it in a designated file. Parameters: conn_identifier Connection identifier. oid Oid of

ftp_rename

(PHP 4, PHP 5, PHP 7) Renames a file or a directory on the FTP server bool ftp_rename ( resource $ftp_stream, string $oldname, string $newname ) ftp_rename() renames a file or a directory on the FTP server. Parameters: ftp_stream The link identifier of the FTP connection. oldname The old file/directory name. newna

HaruDoc::loadRaw

(PECL haru >= 0.0.1) Load a RAW image object HaruDoc::loadRaw ( string $filename, int $width, int $height, int $color_space ) Loads a RAW image. Parameters: filename The name of a RAW image file. width The width of the image. height The height of the image. color_space

stats_rand_gen_beta

(PECL stats >= 1.0.0) Generates beta random deviate float stats_rand_gen_beta ( float $a, float $b ) Returns a random deviate from the beta distribution with parameters A and B. The density of the beta is x^(a-1) * (1-x)^(b-1) / B(a,b) for 0 < x <. Method R. C. H. Cheng. Parameters: a Returns a random deviate from the beta distribution with parameters A and B. Th

EventUtil::getLastSocketErrno

(PECL event >= 1.2.6-beta) Returns the most recent socket error number public static int EventUtil::getLastSocketErrno ([ mixed $socket = NULL ] ) Returns the most recent socket error number( errno ). Parameters: socket Socket resource, stream or a file descriptor of a socket. Returns: Returns the most recent socket error number( errno ).

imap_rfc822_parse_adrlist

(PHP 4, PHP 5, PHP 7) Parses an address string array imap_rfc822_parse_adrlist ( string $address, string $default_host ) Parses the address string as defined in » RFC2822 and for each address. Parameters: address A string containing addresses default_host The default host name Returns: Returns an array of objec

maxdb_more_results

(PECL maxdb >= 1.0) Check if there any more query results from a multi query bool maxdb_more_results ( resource $link ) maxdb_more_results() indicates if one or more result sets are available from a previous call to maxdb_multi_query(). Returns: Always FALSE. See also: maxdb_multi_query() -

ingres_commit

(PHP 4 >= 4.0.2, PHP 5 <= 5.0.5, PECL ingres >= 1.0.0) Commit a transaction bool ingres_commit ( resource $link ) ingres_commit() commits the currently open transaction, making all changes made to the database permanent. This closes the transaction. A new transaction can be opened by sending a query with ingres_query(). You can also have the server commit automatically after every query by calling ingres_autocom

Callbacks / Callables

Examples: Callback function examples A PHP function is passed by its name as a string. Any built-in or user-defined function can be used, except language constructs such as: array(), echo, empty(), eval(), exit(), isset(), list(), print or unset(). A method of an instantiated object is passed as an array containing an object at index 0 and the method name at index 1. Accessing protected and private methods from within a class is allowed. Static class methods can al