gpt4 book ai didi

php - 使用 PHP/Javascript 保存客户端数据

转载 作者:行者123 更新时间:2023-11-29 20:22:00 25 4
gpt4 key购买 nike

我想制作一个类似于 craiglist.org 的网站。如果您访问该站点并单击任何城市,它会将您重定向到城市子域。之后,无论何时您访问 craiglist.org,它都会将您重定向到 city 子域。所以我需要将城市/国家/地区名称保留在我客户的机器上。

起初我以为我可以通过设置过期时间的Cookie来完成。我试过了,但是过期时间不起作用,因为当我关闭浏览器时,这意味着当 session 结束时它不再获取 cookie。

但是,如果 cookie 没问题,那么它也可能无法到达目的地,就好像我从 Mozilla 浏览该站点并关闭并使用 IE 打开该站点一样,它应该将我重定向到 cookie 无法访问的站点我觉得呢?

你能给我一些建议吗?我该怎么做。我将使用 Codeigniter/Php 来完成应用程序。

谢谢召唤

最佳答案

cookie 是正确的方法。你无法实现跨浏览器的东西......你可以使用 flash cookies 或重新检测 ip 地址等,但那是愚蠢的......

好吧,craiglist.org 似乎会根据我的 IP 地址来源来重定向我。为此,您应该查看此站点:http://www.maxmind.com/app/geolitecity

一般来说,您应该始终为用户提供手动切换的可能性。

从可用性优化的 Angular 来看,我建议采用以下方案:

  1. 用户点击欢迎页面
  2. 欢迎页面使用 geoip 检测用户的城市3.1 如果成功检测到城市,用户将直接跳转到子站点,cookie 将被保存3.2 如果没有成功检测到城市,欢迎页面会显示一个选择列表。一旦用户点击一个选择列表,cookie 就会被设置,用户就会得到指定的子站点
  3. 在每个子站点的顶部“切换城市”或其他内容上都有一个醒目的按钮。如果用户单击它,他将进入欢迎页面,但带有参数“userelection=true”ro something,以便自动 ip 检测和重定向不会启动。用户选择所需的子站点,获取 cookie 并进行重定向。5.如果用户再次点击欢迎页面并发现 cookie,他将被重定向到子站点,可以覆盖 cookie,这没问题...

最简单和最有效的解决方案是使用 php 设置 cookie,然后进行 header 重定向!

这样你就可以消除 javascript,它可以被关闭或其他东西。

只需使用这个 php 命令:

setcookie("city", $value, time()+(86400*365));

或类似的东西。这是联机帮助页:

http://php.net/manual/en/function.setcookie.php

您可以使用

检查 cookie 值
if($_COOKIE['city'] != '') 

编辑:

以及我现在在这里为您提供一个工作示例的困惑,只需将其粘贴到一个 php 文件并将其保存到您的网络服务器 :) 不需要检查子站点,因为您说您正在重定向到外部网站(子域)anways。请记住,如果将 cookie 设置在另一个子域上,则无法从子域访问 cookie!也许这是你的问题,因此检查和重定向引导文件。

好了,给你。任何问题?评论!

    <?
/* this is if we are at a subsite. you wont need that as it will be external subdomains anway just for the purpose of a working example here.*/
if($_GET['subsite']!="") {
/* the change link has the paramenter userselection which overrides any autoamtic detection by cookie or ip or whatever, this is important if the user wants to change or the automatic change fails or is wrong*/
?>
you are now at the subsite of <?=$_GET['subsite'];?><br/>
<a href="?userselection=true">click here to change</a>
<?
}
else {
/* only try to automatically redirect if we have either cookie or user specified data, but dont if the flag userselectino is true. because the user wants to change.
you could ip-detect the city at this point.
*/
if(($_GET['go']!=''||$_COOKIE['city']!='')&&$_GET['userselection']!='true') {
/* if we had ip detection the priority of it would probably go here */
$target=$_COOKIE['city'];
/* the get varaible overrides the cookie value as its user supplied and more important*/

if($_GET['go']!='') {
$target=$_GET['go'];
}
/* set the cookie, don't care if it already has been set*/
setcookie('city',$target,time()+(86400*365));
/* redirect the user */
header('Location: ?subsite='.$target);
}
else {
/* well we either have neither cookie nor user specified city or the user wanted to change teh city, lets display the selection dialog!*/
?>
hello! select your city:<br/>
<a href="?go=vienna">vienna</a>
<a href="?go=newyork">new york</a>
<?
}
}
?>

关于php - 使用 PHP/Javascript 保存客户端数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3542940/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com