PHP – headers_sent() Function
The PHP headers_sent() function checks if/where headers have been sent.
The PHP headers_sent() function checks if/where headers have been sent.
The PHP hexdec() function converts a hexadecimal number to a decimal number.
The PHP highlight_file() function outputs a file with the PHP syntax highlighted. The syntax is highlighted by using HTML tags.
The PHP highlight_string() function outputs a string with the PHP syntax highlighted. The syntax is highlighted by using HTML tags.
The PHP http_response_code() function sets or returns the HTTP response status code.
The PHP hypot() function calculates the hypotenuse of a right-angle triangle.
The PHP if keyword is used to create an if conditional. The elseif and else keywords can then be used to run code when the if condition is not met.
The PHP ignore_user_abort() function sets whether a user should abort a script execution when they disconnect.
The PHP implements keyword is used to declare that a class must have the methods described in the specified interface (called polymorphism).
The PHP include keyword is used to embed PHP code from another file. If the file is not found, a warning is shown and the program continues to run.
The PHP include_once keyword is used to embed PHP code from another file. If the file is not found, a warning is shown and the program continues to run.
The PHP inet_ntop() function converts a 32bit IPv4 or 128bit IPv6 address into a readable format.
The PHP inet_pton() function converts a readable IP address into a packed 32bit IPv4 or 128bit IPv6 format.
The PHP instanceof keyword is used to check if an object belongs to a class, and returns true if the object is an instance of the class or false if not.
The PHP insteadof keyword allows you to select from which trait a method should be taken if more than one trait has a method with the same name.
The PHP interface keyword is used to create interfaces, which is a structure which defines a list of methods that must exist in a class.