lchown

(PHP 5 >= 5.1.2, PHP 7) Changes user ownership of symlink bool lchown ( string $filename, mixed $user ) Attempts to change the owner of the symlink filename to user user. Only the superuser may change the owner of a symlink. Parameters: filename Path to the file. user User name or number. Returns: Returns

VarnishAdmin::__construct

(PECL varnish >= 0.3) VarnishAdmin constructor public VarnishAdmin::__construct ([ array $args ] ) Parameters: args Configuration arguments. The possible keys are: VARNISH_CONFIG_IDENT - local varnish instance ident VARNISH_CONFIG_HOST - varnish instance ip VARNISH_CONFIG_PORT - varnish instance port VARNISH_CONFIG_SECRET - varnish instance secret VARNISH_CONFIG_TIMEOU

Imagick::getPackageName

(PECL imagick 2.0.0) Returns the ImageMagick package name string Imagick::getPackageName ( void ) Returns the ImageMagick package name. Returns: Returns the ImageMagick package name as a string. Exception: Throws ImagickException on error.

OCI-Lob::export

(PHP 5, PHP 7, PECL OCI8 >= 1.1.0) Exports LOB's contents to a file bool OCI-Lob::export ( string $filename [, int $start [, int $length ]] ) Exports LOB contents to a file. Parameters: filename Path to the file. start Indicates from where to start exporting. length Indicates the length of data to

LimitIterator::__construct

(PHP 5 >= 5.1.0, PHP 7) Construct a LimitIterator public LimitIterator::__construct ( Iterator $iterator [, int $offset = 0 [, int $count = -1 ]] ) Constructs a new LimitIterator from an iterator with a given starting offset and maximum count. Parameters: iterator The Iterator to limit. offset Optional offset of the limit.

maxdb_fetch_field

(PECL maxdb >= 1.0) Returns the next field in the result set mixed maxdb_fetch_field ( resource $result ) Procedural style Object oriented style mixed maxdb_result::fetch_field ( void ) The maxdb_fetch_field() returns the definition of one column of a result set as an resource. Call this function repeatedly to retrieve information about all columns in the result set. maxdb_fetch_field() returns FALSE when no more fields

mcrypt_enc_get_iv_size

(PHP 4 >= 4.0.2, PHP 5, PHP 7) Returns the size of the IV of the opened algorithm int mcrypt_enc_get_iv_size ( resource $td ) This function returns the size of the IV of the algorithm specified by the encryption descriptor in bytes. An IV is used in cbc, cfb and ofb modes, and in some algorithms in stream mode. Parameters: td The encryption descriptor.

CairoMatrix::initRotate

(PECL cairo >= 0.1.0) Creates a new rotated matrix public static void CairoMatrix::initRotate ( float $radians ) Object oriented style (method): Procedural style: object cairo_matrix_init_rotate ( float $radians ) Creats a new matrix to a transformation that rotates by radians provided Parameters: radians angle of rotation, in radians. The direction of rotation is de

RegexIterator::getFlags

(PHP 5 >= 5.2.0, PHP 7) Get flags public int RegexIterator::getFlags ( void ) Returns the flags, see RegexIterator::setFlags() for a list of available flags. Returns: Returns the set flags. Examples: RegexIterator::getFlags() example <?php $test = array ('str1' => 'test 1', 'teststr2' => 'another test', 'str3

apd_echo

(PECL apd >= 0.2) Echo to the debugging socket bool apd_echo ( string $output ) Usually sent via the socket to request information about the running script. Parameters: output The debugged variable. Returns: Returns TRUE on success or FALSE on failure. Examples: apd_echo() example