This is mainly a question about the garbage collection process that is set in the php.ini file.
I'm specifying the sessions directory in a different place than what the php.ini specifies. But this is for only one site.
Does the garbage collector handle that new directory too? Or will I need to make some adjustments so the garbage collector also cleans that new directory, as well as the directory in php.ini?
Hope I make sense.
And here's the code I am using:
session_save_path('/sessions/');
session_name("yeppers");
session_start();