When a user logs out of a web application, which PHP function should be used to completely destroy a session?
- session_destroy()
- session_start()
- session_unset()
- unset($_SESSION)
The session_destroy() function is used to completely destroy a session in PHP, ensuring the user is logged out and their session data is wiped clean.
Loading...
Related Quiz
- What is the concept of autoloading in PHP? How does it work and how can you implement it in your code?
- What does the unlink() function mean?
- You need to understand if an instance of an abstract class can be created in PHP. What would be your conclusion?
- Which PHP function can be used to customize the error handler?
- When is the elseif statement used in PHP?