PHP – set_error_handler() Function
The PHP set_error_handler() function sets a user-defined error handler function.
The PHP set_error_handler() function sets a user-defined error handler function.
The PHP set_exception_handler() function sets a user-defined exception handler function and will stop executing after the exception handler is called.
The PHP set_file_buffer() function specifies the number of bytes to buffer on the given file.
The PHP setcookie() function defines a cookie to be sent along with the rest of the HTTP headers.
The PHP setrawcookie() function defines a cookie (without URL encoding) to be sent along with the rest of the HTTP headers.
The PHP show_source() function outputs a file with the PHP syntax highlighted. The syntax is highlighted by using HTML tags.
The PHP shuffle() function randomizes the order of the elements in the array and assigns new keys. Existing keys are removed.
The PHP sinh() function returns the hyperbolic sine of a number, which is equal to (exp(number) – exp(-number))/2).
The PHP sleep() function delays execution of the current script for a specified number of seconds.
The PHP stat() function returns information about a file. The informational array may contain the number index, the name index, or both.
The PHP static keyword is used to declare properties and methods of a class as static (can be used without creating an instance of the class).
The PHP strftime() function formats a local time and/or date according to locale settings.
The PHP strtotime() function parses an English textual datetime into a Unix timestamp (the number of seconds since January 1 1970 00:00:00 GMT).
The PHP symlink() function creates a symbolic link from the existing target with the specified name link.