gzclose

(PHP 4, PHP 5, PHP 7) Close an open gz-file pointer bool gzclose ( resource $zp ) Closes the given gz-file pointer. Parameters: zp The gz-file pointer. It must be valid, and must point to a file successfully opened by gzopen(). Returns: Returns TRUE on success or FALSE on failure. Examples:

$_FILES

(PHP 4 >= 4.1.0, PHP 5, PHP 7) HTTP File Upload variables An associative array of items uploaded to the current script via the HTTP POST method. $HTTP_POST_FILES contains the same initial information, but is not a superglobal. (Note that $HTTP_POST_FILES and $_FILES are different variables and that PHP handles them as such) Changelog: 4.1.0 Introduced $_FILES that depreca

ImagickDraw::rotate

(PECL imagick 2.0.0) Applies the specified rotation to the current coordinate space bool ImagickDraw::rotate ( float $degrees ) Applies the specified rotation to the current coordinate space. Parameters: degrees degrees to rotate Returns: No value is returned. This function is currently not documented; only it

mssql_num_rows

(PHP 4, PHP 5, PECL odbtp >= 1.1.1) Gets the number of rows in result int mssql_num_rows ( resource $result ) mssql_num_rows() returns the number of rows in a result set. Parameters: result The result resource that is being evaluated. This result comes from a call to mssql_query(). Returns: Returns the number of rows, as an integer.

cairo_scaled_font_extents

(PECL cairo >= 0.1.0) Description array cairo_scaled_font_extents ( CairoScaledFont $scaledfont ) The function description goes here. Parameters: scaledfont Description... Returns: What is returned on success and failure This function is currently not documented; only its argument list is available.

dba_optimize

(PHP 4, PHP 5, PHP 7) Optimize database bool dba_optimize ( resource $handle ) dba_optimize() optimizes the underlying database. Parameters: handle The database handler, returned by dba_open() or dba_popen(). Returns: Returns TRUE on success or FALSE on failure. See also:

MongoCollection::deleteIndex

(PECL mongo >=0.9.0) Deletes an index from this collection public array MongoCollection::deleteIndex ( string|array $keys ) This method is identical to: <?php public function deleteIndexes($keys) {   $indexName = $this->toIndexString($keys);   return $this->db->command(array(     "deleteIndexes" => $this->getName(),     "index" => $indexName,   )); } ?> Each index is given a unique name

SWFShape::drawGlyph

(PHP 5 <= 5.3.0, PECL ming SVN) Draws the first character in the given string into the shape using the glyph definition from the given font void SWFShape::drawGlyph ( SWFFont $font, string $character [, int $size ] ) Returns: No value is returned. This function is currently not documented; only its argument list is available.

is_tainted

(PECL taint >=0.1.0) Checks whether a string is tainted bool is_tainted ( string $string ) Checks whether a string is tainted Parameters: string Checks whether a string is tainted Returns: Return TRUE if the string is tainted, FALSE otherwise.

DOMDocument::schemaValidateSource

(PHP 5, PHP 7) Validates a document based on a schema public bool DOMDocument::schemaValidateSource ( string $source [, int $flags ] ) Validates a document based on a schema defined in the given string. Parameters: source A string containing the schema. flags A bitmask of Libxml schema validation flags. Currently the only supported va