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

fann_get_bias_array

(PECL fann >= 1.0.0) Get the number of bias in each layer in the network array fann_get_bias_array ( resource $ann ) Get the number of bias in each layer in the network. Parameters: ann Neural network resource. Returns: An array of numbers of bias in each layer

mysqli_stmt::data_seek

(PHP 5, PHP 7) Seeks to an arbitrary row in statement result set void mysqli_stmt::data_seek ( int $offset ) Object oriented style Procedural style void mysqli_stmt_data_seek ( mysqli_stmt $stmt , int $offset ) Seeks to an arbitrary result pointer in the statement result set. mysqli_stmt_store_result() must be called prior to mysqli_stmt_data_seek(). Parameters: stmt P

yaml_parse_url

(PECL yaml >= 0.4.0) Parse a Yaml stream from a URL mixed yaml_parse_url ( string $url [, int $pos = 0 [, int &$ndocs [, array $callbacks ]]] ) Convert all or part of a YAML document stream read from a URL to a PHP variable. Parameters: url url should be of the form "scheme://...". PHP will search for a protocol handler (also known as a wrapper) for that scheme. I

newt_checkbox_tree_get_current

(PECL newt >= 0.1) Returns checkbox tree selected item mixed newt_checkbox_tree_get_current ( resource $checkboxtree ) This method returns checkbox tree selected tem. Parameters: checkboxtree This method returns checkbox tree selected tem. Returns: Returns current (selected) checkbox tree item.

SimpleXMLElement::attributes

(PHP 5 >= 5.0.1, PHP 7) Identifies an element's attributes public SimpleXMLElement SimpleXMLElement::attributes ([ string $ns = NULL [, bool $is_prefix = false ]] ) This function provides the attributes and values defined within an xml tag. Note: SimpleXML has made a rule of adding iterative properties to most methods. They cannot be viewed using var_dump() or anything else which can examine objects. Pa