Which PHP configuration directive determines where session files are stored on the server?
- session.save_path
- session.cookie_lifetime
- session.gc_probability
- session.use_strict_mode
The 'session.save_path' directive in PHP determines the directory where session files are stored on the server. Understanding this directive is important for session management.
Loading...
Related Quiz
- PHP supports both single-line and multi-line comments.
- The foreach loop in PHP is used to loop over each ______ in an array.
- OOP in PHP stands for Object-Oriented ______.
- An abstract class in PHP OOP is a class that cannot be instantiated and is meant to be ______ by other classes.
- Which of the following are true about the switch statement in PHP?