sybase_free_result

(PHP 4, PHP 5, PHP 7) Frees result memory bool sybase_free_result ( resource $result ) sybase_free_result() only needs to be called if you are worried about using too much memory while your script is running. All result memory will automatically be freed when the script ends. You may call sybase_free_result() with the result identifier as an argument and the associated result memory will be freed. Parameters

SplFileObject::fstat

(PHP 5 >= 5.1.0, PHP 7) Gets information about the file public array SplFileObject::fstat ( void ) Gathers the statistics of the file. Behaves identically to fstat(). Returns: Returns an array with the statistics of the file; the format of the array is described in detail on the stat() manual page. Examples: SplFileObject::fstat() e

uopz_undefine

(PECL uopz >= 1.0.0) Undefine a constant void uopz_undefine ( string $class, string $constant ) void uopz_undefine ( string $constant ) Removes the constant at runtime Parameters: class The name of the class containing constant constant The name of an existing constant Returns:

SWFDisplayItem::setRatio

(PHP 5 <= 5.3.0, PECL ming SVN) Sets the object's ratio void SWFDisplayItem::setRatio ( float $ratio ) swfdisplayitem::setratio() sets the object's ratio to ratio. Obviously only useful for morphs. The object may be a swfshape(), a swfbutton(), a swftext() or a swfsprite() object. It must have been added using the swfmovie::add(). Returns: No value is returned.

mcrypt_module_is_block_algorithm

(PHP 4 >= 4.0.2, PHP 5, PHP 7) This function checks whether the specified algorithm is a block algorithm bool mcrypt_module_is_block_algorithm ( string $algorithm [, string $lib_dir ] ) This function returns TRUE if the specified algorithm is a block algorithm, or FALSE if it is a stream one. Parameters: algorithm The algorithm to check. lib_dir

Generator::key

(PHP 5 >= 5.5.0, PHP 7) Get the yielded key public mixed Generator::key ( void ) Gets the key of the yielded value. Returns: Returns the yielded key. Examples: Generator::key() example <?php function Gen() {     yield 'key' => 'value'; } $gen = Gen(); echo "{$gen->key()} => {$gen->current()}"; The

msession_get

(PHP 4 >= 4.2.0, PHP 5 <= 5.1.2) Get value from session string msession_get ( string $session, string $name, string $value ) This function is currently not documented; only its argument list is available.

dbx_escape_string

(PHP 4 >= 4.3.0, PHP 5 <= 5.0.5, PECL dbx >= 1.1.0) Escape a string so it can safely be used in an sql-statement string dbx_escape_string ( object $link_identifier, string $text ) Escape the given string so that it can safely be used in an sql-statement. Parameters: link_identifier The DBX link object returned by dbx_connect() text

mysqli_result::$field_count

(PHP 5, PHP 7) Get the number of fields in a result int mysqli_num_fields ( mysqli_result $result ) Object oriented style int $mysqli_result->field_count; Procedural style Returns the number of fields from specified result set. Parameters: result Procedural style only: A result set identifier returned by mysqli_query(), mysqli_store_result() or mysqli_use_result().

IntlDateFormatter::getTimeZoneId

(PHP 5 >= 5.3.0, PHP 7, PECL intl >= 1.0.0) Get the timezone-id used for the IntlDateFormatter public string IntlDateFormatter::getTimeZoneId ( void ) Object oriented style Procedural style string datefmt_get_timezone_id ( IntlDateFormatter $fmt ) Get the timezone-id used for the IntlDateFormatter. Parameters: fmt The formatter resource. Ret