Skip to content

Latest commit

 

History

History
18 lines (12 loc) · 469 Bytes

0581.md

File metadata and controls

18 lines (12 loc) · 469 Bytes

To destroy one variable within a PHP session you should use which method in PHP 5?

  • A) unset the variable in $_SESSION using unset()
  • B) Unset the variable in $HTTP_SESSION_VARS
  • C) Use the session_destroy() function
  • D) Use the session_unset() function
Answer

Answer: A