w3school的PHP教程提炼(二)PHP高级
2010-12-09 07:16:02 来源:WEB开发网核心提示:5 Cookies5.1 创建cookie setcookie()函数语法:setcookie(name, value, expire, path, domain);Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.Co
5 Cookies
5.1 创建cookie setcookie()函数
语法:setcookie(name, value, expire, path, domain);
<?php
setcookie("user", "Alex Porter", time()+3600);//创建名为"user"的cookie,赋值为Alex Porter,1小时后过期
?>
5.2 取回cookie的值
<?php
echo $_COOKIE["user"]; //print a cookie
print_r($_COOKIE); //a way to view all cookies
?>
使用isset()函数来确认是否已设置了cookie:
<?php
if(isset($_COOKIE["user"])){
echo "Welcome " . $_COOKIE["user"] . "!<br />";
}else{
echo "Welcome guest!<br />";
}
?>
5.3 删除cookie
<?php
setcookie("user", "", time()-3600); //使过期日期变更为过去的时间点
?>
6 Session变量
6.1 启动session会话
<?php session_start(); ?><!--该函数必须位于html标签之前-->
<html>
</html>
[]
赞助商链接