Developer Terms Glossary
Stores small pieces of data on the client.
21/06/2025 07:33
💡
Stores environment variables.
28/06/2025 08:55
💡
Handles file uploads.
28/06/2025 08:55
💡
Collects data sent via URL parameters.
28/06/2025 08:55
💡
Accesses global variables from anywhere in the script.
28/06/2025 08:56
💡
Collects data sent in the body of a POST request.
28/06/2025 08:56
💡
Collects data from $_GET, $_POST, and $_COOKIE.
28/06/2025 08:56
💡
Provides information about headers, paths, and script locations.
28/06/2025 08:56
💡
Stores user session data.
28/06/2025 08:57
💡
A data structure that stores multiple values in one variable.
28/06/2025 08:57
💡
An array that uses named keys.
28/06/2025 08:57
💡
Represents true or false.
28/06/2025 08:57
💡
Exits a loop or switch.
28/06/2025 08:58
💡
Defines a block of code to handle exceptions.
28/06/2025 08:58
💡
A value that cannot be changed once defined.
28/06/2025 08:58
💡
Skips the current loop iteration and continues with the next.
28/06/2025 08:58
💡
Terminates the script with an optional message.
28/06/2025 08:59
💡
Outputs one or more strings.
28/06/2025 08:59
💡
Specifies code to run if the condition is false.
28/06/2025 09:00
💡
Specifies a new condition if the previous one was false.
28/06/2025 09:00
💡
Checks if a variable is empty.
28/06/2025 09:00
💡
An issue that occurs during script execution.
28/06/2025 09:00
💡
An object representing an error that can be caught.
28/06/2025 09:01
💡
Same as die(); stops script execution.
28/06/2025 09:01
💡
Closes an open file.
28/06/2025 09:01
💡