Skip to content

Latest commit

 

History

History
18 lines (12 loc) · 630 Bytes

0616.md

File metadata and controls

18 lines (12 loc) · 630 Bytes

If you would like to store your session in the database, you would do which of the following?

  • A) Create functions for each session handling step and use session_set_save_handler() to override PHP's internal settings
  • B) It requires a custom PHP extension to change the session handler
  • C) Implement the session_set_save_handler() function
  • D) Configure the session.save_handler INI directive to your session class
Answer

Answer: A