ini_restore

(PHP 4, PHP 5, PHP 7) Restores the value of a configuration option void ini_restore ( string $varname ) Restores a given configuration option to its original value. Parameters: varname The configuration option name. Returns: No value is returned. Examples: ini_restore() example

fbsql_field_table

(PHP 4 >= 4.0.6, PHP 5, PHP 7) Get name of the table the specified field is in string fbsql_field_table ( resource $result [, int $field_offset ] ) Returns the name of the table that the specified field is in. Parameters: result A result identifier returned by fbsql_query() or fbsql_db_query(). field_offset The numerical offset of the

QuickHashIntSet::saveToString

(PECL quickhash >= Unknown) This method returns a serialized version of the set public string QuickHashIntSet::saveToString ( void ) This method returns a serialized version of the set in the same format that loadFromString() can read. Returns: This method returns a string containing a serialized format of the set. Each element is stored as a four byte value in the Endianness that the current s

fdf_set_javascript_action

(PHP 4 >= 4.0.2, PHP 5, PHP 7) Sets an javascript action of a field bool fdf_set_javascript_action ( resource $fdf_document, string $fieldname, int $trigger, string $script ) Sets a javascript action for the given field. Parameters: fdf_document The FDF document handle, returned by fdf_create(), fdf_open() or fdf_open_string(). fieldname

fbsql_create_clob

(PHP 4 >= 4.2.0, PHP 5, PHP 7) Create a CLOB string fbsql_create_clob ( string $clob_data [, resource $link_identifier ] ) Creates a CLOB from the given data. Parameters: clob_data The CLOB data. link_identifier A FrontBase link identifier returned by fbsql_connect() or fbsql_pconnect(). If optional and not specified, the function wil

dbplus_last

(PHP 4 <= 4.1.0, PECL dbplus >= 0.9) Get last tuple from relation int dbplus_last ( resource $relation, array &$tuple ) Reads the data for the last tuple for the given relation, makes it the current tuple and pass it back as an associative array in tuple. Parameters: relation A relation opened by dbplus_open(). tuple A relatio

ibase_affected_rows

(PHP 5, PHP 7) Return the number of rows that were affected by the previous query int ibase_affected_rows ([ resource $link_identifier ] ) This function returns the number of rows that were affected by the previous query (INSERT, UPDATE or DELETE) that was executed from within the specified transaction context. Parameters: link_identifier A transaction context. If link_id

is_uploaded_file

(PHP 4 >= 4.0.3, PHP 5, PHP 7) Tells whether the file was uploaded via HTTP POST bool is_uploaded_file ( string $filename ) Returns TRUE if the file named by filename was uploaded via HTTP POST. This is useful to help ensure that a malicious user hasn't tried to trick the script into working on files upon which it should not be working--for instance, /etc/passwd. This sort of check is especially important if there is an

posix_getlogin

(PHP 4, PHP 5, PHP 7) Return login name string posix_getlogin ( void ) Returns the login name of the user owning the current process. Returns: Returns the login name of the user, as a string. Examples: Example use of posix_getlogin() <?php echo posix_getlogin(); //apache ?> See also:

Judy::count

(PECL judy >= 0.1.1) Count the number of elements in the Judy array public int Judy::count ([ int $index_start = 0 [, int $index_end = -1 ]] ) Count the number of elements in the Judy array. Parameters: index_start Start counting from the given index. Default is first index. index_end Stop counting when reaching this index. Default