session.save_path = "C:/DOCUME~1/li/LOCALS~1/Temp"; Whether to use cookies.
session.use_cookies = 1; This option enables administrators to make their users invulnerable to
; attacks which involve passing session ids in URLs; defaults to 0.
; session.use_only_cookies = 1; Name of the session (used as cookie name).
session.name = PHPSESSID; Initialize session on request startup.
session.auto_start = 0; Lifetime in seconds of cookie or, if 0, until browser is restarted.
session.cookie_lifetime = 0; The path for which the cookie is valid.
session.cookie_path = /; The domain for which the cookie is valid.
session.cookie_domain =; Handler used to serialize data.  php is the standard serializer of PHP.
session.serialize_handler = php检查配置php.ini是否一致。