What is the default session time in PHP and how can I
change it?
Answer Posted / sunny patel
Default session time is 1440 seconds,but we can change it
through ini_set() method.
$intTime=152;
ini_set("session.gc_maxlifetime",$intTime);
| Is This Answer Correct ? | 40 Yes | 18 No |
Post New Answer View All Answers
How to delete a file from the system?
What is a PHP Filter?
Which function can be used to delete a file?
How to avoid the undefined index error?
How is it possible to parse a configuration file?
How to create a directory?
Tell me what is the main difference between require() and require_once()?
Which php framework is best?
How to enable parsing?
How does csrf token work?
Is laravel easy to learn?
can you give me an example code of calling java script function in php variable using AJAX.or with out ajax??????
Tell us how can we display the output directly to the browser?
Explain the difference between array_merge() and array_combine()?
Differences between get, post and request methods ?