如何用 Python CGI 编程检索 cookie?
检索 Cookie
检索所有已设置的 Cookie 非常容易。Cookie 存储在 CGI 环境变量 HTTP_COOKIE 中,并且会有以下形式 −
key1 = value1;key2 = value2;key3 = value3....
下面是有关如何检索 Cookie 的示例。
#!/usr/bin/python # Import modules for CGI handling from os import environ import cgi, cgitb if environ.has_key('HTTP_COOKIE'): for cookie in map(strip, split(environ['HTTP_COOKIE'], ';')): (key, value ) = split(cookie, '='); if key == "UserID": user_id = value if key == "Password": password = value print "User ID = %s" % user_id print "Password = %s" % password
这会产生上述脚本设置的 Cookie 的以下结果 −
User ID = XYZ Password = XYZ123
广告