scandir

(PHP 5, PHP 7) List files and directories inside the specified path array scandir ( string $directory [, int $sorting_order = SCANDIR_SORT_ASCENDING [, resource $context ]] ) Returns an array of files and directories from the directory. Parameters: directory The directory that will be scanned. sorting_order By default, the sorted order

tidy::html

(PHP 5, PHP 7, PECL tidy 0.5.2-1.0.0) Returns a tidyNode object starting from the <html> tag of the tidy parse tree tidyNode tidy::html ( void ) Object oriented style Procedural style tidyNode tidy_get_html ( tidy $object ) Returns a tidyNode object starting from the <html> tag of the tidy parse tree. Parameters: object The Tidy object. Re

bindec

(PHP 4, PHP 5, PHP 7) Binary to decimal number bindec ( string $binary_string ) Returns the decimal equivalent of the binary number represented by the binary_string argument. bindec() converts a binary number to an integer or, if needed for size reasons, float. bindec() interprets all binary_string values as unsigned integers. This is because bindec() sees the most significant bit as another order of magnitude rather tha

posix_geteuid

(PHP 4, PHP 5, PHP 7) Return the effective user ID of the current process int posix_geteuid ( void ) Return the numeric effective user ID of the current process. See also posix_getpwuid() for information on how to convert this into a useable username. Returns: Returns the user id, as an integer Examples: posix_geteuid() example

OAuthProvider::isRequestTokenEndpoint

(PECL OAuth >= 1.0.0) Sets isRequestTokenEndpoint public void OAuthProvider::isRequestTokenEndpoint ( bool $will_issue_request_token ) Parameters: will_issue_request_token Sets whether or not it will issue a request token, thus determining if OAuthProvider::tokenHandler() needs to be called. Returns: No value is returned.

spl_autoload_unregister

(PHP 5 >= 5.1.2, PHP 7) Unregister given function as __autoload() implementation bool spl_autoload_unregister ( mixed $autoload_function ) Removes a function from the autoload queue. If the queue is activated and empty after removing the given function then it will be deactivated. When this function results in the queue being deactivated, any __autoload function that previously existed will not be reactivated.

libxml_use_internal_errors

(PHP 5 >= 5.1.0, PHP 7) Disable libxml errors and allow user to fetch error information as needed bool libxml_use_internal_errors ([ bool $use_errors = false ] ) libxml_use_internal_errors() allows you to disable standard libxml errors and enable user error handling. Parameters: use_errors Enable (TRUE) user error handling or disable (FALSE) user error handling. Dis

lzf_compress

(PECL lzf >= 0.1.0) LZF compression string lzf_compress ( string $data ) lzf_compress() compresses the given data string using LZF encoding. Parameters: data The string to compress. Returns: Returns the compressed data or FALSE if an error occurred. See also:

cairo_pattern_get_surface

(PECL cairo >= 0.1.0) Description CairoSurface cairo_pattern_get_surface ( CairoSurfacePattern $pattern ) The function description goes here. Parameters: pattern Description... Returns: What is returned on success and failure This function is currently not documented; only its argument list is available.

PDOStatement::fetchObject

(PHP 5 >= 5.1.0, PHP 7, PECL pdo >= 0.2.4) Fetches the next row and returns it as an object. public mixed PDOStatement::fetchObject ([ string $class_name = "stdClass" [, array $ctor_args ]] ) Fetches the next row and returns it as an object. This function is an alternative to PDOStatement::fetch() with PDO::FETCH_CLASS or PDO::FETCH_OBJ style. Parameters: class_name