1 Star 0 Fork 0

wangzb/iOS-Cookie

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
cookie.php 730 Bytes
一键复制 编辑 原始数据 按行查看 历史
skyfox 提交于 2016-12-07 13:36 . cookie
<!doctype html>
<html lang="cn">
<head>
<title></title>
<meta charset="UTF-8">
<meta name="keywords" content="">
<meta name="description" content="">
<meta name="viewport" content="width=device-width,target-densitydpi=high-dpi,initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
<style type="text/css">
</style>
<script language="JavaScript" type="text/javascript">
<!--
function showCookie(){
alert('js read cooie:'+document.cookie);
}
showCookie();
//-->
</script>
</head>
<body>
<?php
$value = "php write my cookie value";
setcookie("TestPHPWriteCookie",$value,time()+3600*24);
echo "php read cookie";
print_r($_COOKIE);
?>
<button onclick="showCookie()">showCookie</button>
</body>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Objective-C
1
https://gitee.com/wangzb26/iOS-Cookie.git
git@gitee.com:wangzb26/iOS-Cookie.git
wangzb26
iOS-Cookie
iOS-Cookie
master

搜索帮助