What is the default session time in PHP and how can I
change it?
Answer Posted / archana
ini_set('session.gc_maxlifetime', 14400);
ini_set('session.gc_probability', 1);
ini_set('session.gc_divisor', 100);
add above codes in index.php. it will work.
changing php.ini value is not a good way.it will not work.
| Is This Answer Correct ? | 4 Yes | 3 No |
Post New Answer View All Answers
What is cakephp framework?
What is php beginner?
What is the actually used php version?
Echo is used to Display message on screen. Which is used with echo to not output the trailing newline?
what is session_set_save_handler in PHP?
What is the use of final class in php?
Where is session value stored php?
How can you increase the maximum execution time of a script in php?
What is cookies? How to create cookies in php?
What is Different between Joomla And Magento?
Why php is used in html?
Php says that an array is an ordered map. But how the values are ordered in an array?
How to do single and multi line comment in php?
What is a php 5?
How to create a session? How to set a value in session?