HaruPage::getLineWidth

(PECL haru >= 0.0.1) Get the current line width float HaruPage::getLineWidth ( void ) Get the current line width. Returns: Returns the current line width. Exception: Throws a HaruException on error. See also: HaruPage::setLineWidth() -

Imagick::readImageFile

(PECL imagick 2.0.0) Reads image from open filehandle bool Imagick::readImageFile ( resource $filehandle [, string $fileName = null ] ) Reads image from open filehandle Parameters: filehandle Reads image from open filehandle fileName Reads image from open filehandle Returns: Returns TRUE on success.

jdtounix

(PHP 4, PHP 5, PHP 7) Convert Julian Day to Unix timestamp int jdtounix ( int $jday ) This function will return a Unix timestamp corresponding to the Julian Day given in jday or FALSE if jday is not inside the Unix epoch (Gregorian years between 1970 and 2037 or 2440588 <= jday <= 2465342 ). The time returned is localtime (and not GMT). Parameters: jday A julian day

Memcached::setOption

(PECL memcached >= 0.1.0) Set a Memcached option public bool Memcached::setOption ( int $option, mixed $value ) This method sets the value of a Memcached option. Some options correspond to the ones defined by libmemcached, and some are specific to the extension. See Memcached Constants for more information. The options listed below require values specified via constants. Memcached::OPT_HASH requires Memcached::HASH_*

ibase_blob_create

(PHP 5, PHP 7) Create a new blob for adding data resource ibase_blob_create ([ resource $link_identifier = NULL ] ) ibase_blob_create() creates a new BLOB for filling with data. Parameters: link_identifier An InterBase link identifier. If omitted, the last opened link is assumed. Returns: Returns a BLOB handle for later use with ibase_blob_add()

decoct

(PHP 4, PHP 5, PHP 7) Decimal to octal string decoct ( int $number ) Returns a string containing an octal representation of the given number argument. The largest number that can be converted is 4294967295 in decimal resulting to "37777777777". Parameters: number Decimal value to convert Returns: Octal string representation of number

$_ENV

(PHP 4 >= 4.1.0, PHP 5, PHP 7) Environment variables An associative array of variables passed to the current script via the environment method. These variables are imported into PHP's global namespace from the environment under which the PHP parser is running. Many are provided by the shell under which PHP is running and different systems are likely running different kinds of shells, a definitive list is impossible. Please see your shell

dbx_fetch_row

(PHP 5 <= 5.0.5, PECL dbx >= 1.1.0) Fetches rows from a query-result that had the DBX_RESULT_UNBUFFERED flag set mixed dbx_fetch_row ( object $result_identifier ) dbx_fetch_row() fetches rows from a result identifier that had the DBX_RESULT_UNBUFFERED flag set. When the DBX_RESULT_UNBUFFERED is not set in the query, dbx_fetch_row() will fail as all rows have already been fetched into the results data property. As a

xdiff_string_diff_binary

(PECL xdiff >= 0.2.0) Alias of xdiff_string_bdiff string xdiff_string_bdiff ( string $old_data, string $new_data ) Makes a binary diff of two strings and returns the result. This function works with both text and binary data. Resulting patch can be later applied using xdiff_string_bpatch()/xdiff_file_bpatch(). Starting with version 1.5.0 this function is an alias of xdiff_string_bdiff(). Parameters:

ErrorException::__construct

(PHP 5 >= 5.1.0, PHP 7) Constructs the exception public ErrorException::__construct ([ string $message = "" [, int $code = 0 [, int $severity = 1 [, string $filename = __FILE__ [, int $lineno = __LINE__ [, Exception $previous = NULL ]]]]]] ) Constructs the Exception. Parameters: message The Exception message to throw. code The Exception code.