tidy::parseString

(PHP 5, PHP 7, PECL tidy >= 0.5.2) Parse a document stored in a string bool tidy::parseString ( string $input [, mixed $config [, string $encoding ]] ) Object oriented style Procedural style tidy tidy_parse_string ( string $input [, mixed $config [, string $encoding ]] ) Parses a document stored in a string. Parameters: input The data to be parsed.

strtotime

(PHP 4, PHP 5, PHP 7) Parse about any English textual datetime description into a Unix timestamp int strtotime ( string $time [, int $now = time() ] ) The function expects to be given a string containing an English date format and will try to parse that format into a Unix timestamp (the number of seconds since January 1 1970 00:00:00 UTC), relative to the timestamp given in now, or the current time if now is not supplied.

openal_buffer_data

(PECL openal >= 0.1.0) Load a buffer with data bool openal_buffer_data ( resource $buffer, int $format, string $data, int $freq ) Parameters: buffer An Open AL(Buffer) resource (previously created by openal_buffer_create()). format Format of data, one of: AL_FORMAT_MONO8, AL_FORMAT_MONO16, AL_FORMAT_STEREO8 and AL_FORMAT_STEREO16

session_start

(PHP 4, PHP 5, PHP 7) Start new or resume existing session bool session_start ([ array $options = [] ] ) session_start() creates a session or resumes the current one based on a session identifier passed via a GET or POST request, or passed via a cookie. When session_start() is called or when a session auto starts, PHP will call the open and read session save handlers. These will either be a built-in save handler provided

readline_clear_history

(PHP 4, PHP 5, PHP 7) Clears the history bool readline_clear_history ( void ) This function clears the entire command line history. Returns: Returns TRUE on success or FALSE on failure.

eio_grp_limit

(PECL eio >= 0.0.1dev) Set group limit void eio_grp_limit ( resource $grp, int $limit ) Limit number of requests in the request group. Parameters: grp The request group resource. limit Number of requests in the group. Returns: No value is returned.

cubrid_free_result

(PECL CUBRID >= 8.3.0) Free the memory occupied by the result data bool cubrid_free_result ( resource $req_identifier ) This function frees the memory occupied by the result data. It returns TRUE on success or FALSE on failure. Note that it can only frees the client fetch buffer now, and if you want free all memory, use function cubrid_close_request(). Parameters: req_identifier

mysqli_result::fetch_row

(PHP 5, PHP 7) Get a result row as an enumerated array mixed mysqli_result::fetch_row ( void ) Object oriented style Procedural style mixed mysqli_fetch_row ( mysqli_result $result ) Fetches one row of data from the result set and returns it as an enumerated array, where each column is stored in an array offset starting from 0 (zero). Each subsequent call to this function will return the next row within the result set, or N

MongoCollection::distinct

(PECL mongo >=1.2.11) Retrieve a list of distinct values for the given key across a collection. public array MongoCollection::distinct ( string $key [, array $query ] ) The distinct command returns a list of distinct values for the given key across a collection. Parameters: key The key to use. query An optional query parameters

GearmanClient::setFailCallback

(PECL gearman >= 0.5.0) Set callback for job failure public bool GearmanClient::setFailCallback ( callable $callback ) Sets the callback function to be used when a task does not complete successfully. The function should accept a single argument, a GearmanTask object. Parameters: callback A function to call Returns: Returns TRUE on success or