Same page
session.cookie_lifetime
session.cookie_lifetime specifies the lifetime of the cookie in seconds which is sent to the browser. The value 0 means "until the browser is closed." Defaults to 0. See also session_get_cookie_params() and session_set_cookie_params().
Of course, the client is free to destroy the cookie when it closes anyway - because as far as the client is concerned that's the end of the session; so if you really do want to have a session that lasts three days you may want to set a cookie with the session ID in it.
I've never really seen the point of such long session timeouts, myself; I don't know many people (or programs) who'd want to stay on a single site nonstop for three days.