sqlsrv_num_fields

(No version information available, might only be in Git) Retrieves the number of fields (columns) on a statement mixed sqlsrv_num_fields ( resource $stmt ) Retrieves the number of fields (columns) on a statement. Parameters: stmt The statment for which the number of fields is returned. sqlsrv_num_fields() can be called on a statement before or after statement execution.

SQLite3Result::fetchArray

(PHP 5 >= 5.3.0, PHP 7) Fetches a result row as an associative or numerically indexed array or both public array SQLite3Result::fetchArray ([ int $mode = SQLITE3_BOTH ] ) Fetches a result row as an associative or numerically indexed array or both. By default, fetches as both. Parameters: mode Controls how the next row will be returned to the caller. This value must

eio_sendfile

(PECL eio >= 0.0.1dev) Transfer data between file descriptors resource eio_sendfile ( mixed $out_fd, mixed $in_fd, int $offset, int $length [, int $pri [, callable $callback [, string $data ]]] ) eio_sendfile() copies data between one file descriptor and another. See SENDFILE(2) man page for details. Parameters: out_fd Output stream, Socket resource, or file descriptor

recode_file

(PHP 4, PHP 5, PHP 7) Recode from file to file according to recode request bool recode_file ( string $request, resource $input, resource $output ) Recode the file referenced by file handle input into the file referenced by file handle output according to the recode request. Parameters: request The desired recode request type input A loc

Booleans

Examples: To specify a boolean literal, use the constants TRUE or FALSE. Both are case-insensitive. <?php $foo = True; // assign the value TRUE to $foo ?> Typically, the result of an operator which returns a boolean value is passed on to a control structure. <?php // == is an operator which tests // equality and returns a boolean if ($action == "show_version") {     echo "The version is 1.23"; } // this is not necessary... i

enchant_dict_get_error

(PHP 5 >= 5.3.0, PHP 7, PECL enchant >= 0.1.0 ) Returns the last error of the current spelling-session string enchant_dict_get_error ( resource $dict ) Returns the last error of the current spelling-session Parameters: dict Dictinaray resource Returns: Returns the error message as string or FALSE if no error occurred.

dbplus_resolve

(PHP 4 <= 4.1.0, PECL dbplus >= 0.9) Resolve host information for relation array dbplus_resolve ( string $relation_name ) dbplus_resolve() will try to resolve the given relation_name and find out internal server id, real hostname and the database path on this host. Parameters: relation_name The relation name. Returns: Returns an array conta

PDO::quote

(PHP 5 >= 5.1.0, PHP 7, PECL pdo >= 0.2.1) Quotes a string for use in a query. public string PDO::quote ( string $string [, int $parameter_type = PDO::PARAM_STR ] ) PDO::quote() places quotes around the input string (if required) and escapes special characters within the input string, using a quoting style appropriate to the underlying driver. If you are using this function to build SQL statements, you are strongl

ArrayObject::append

(PHP 5 >= 5.0.0, PHP 7) Appends the value public void ArrayObject::append ( mixed $value ) Appends a new value as the last element. Note: This method cannot be called when the ArrayObject was constructed from an object. Use ArrayObject::offsetSet() instead. Parameters: value The value being appended. Returns: No value is returned.

event_buffer_disable

(PECL libevent >= 0.0.1) Disable a buffered event bool event_buffer_disable ( resource $bevent, int $events ) Disables the specified buffered event. Parameters: bevent Valid buffered event resource. events Any combination of EV_READ and EV_WRITE. Returns: event_buffer_disable() returns TRUE on success or FAL