首页 | 资讯动态 | linux基础 | 系统管理 | 网络管理 | 编程开发 | linux数据库 | 服务器技术 | linux相关 | linux认证 | 嵌入式 | 下载中心 | 专题 | linux招聘 | 镜像站
OKLinux中文技术站
·设为首页
·加入收藏
·联系我们
系统管理: 中文环境 系统管理 桌面应用 内核技术 | Linux基础: 基础入门 安装配置 常用命令 经验技巧 软件应用 | Linux数据库: Mysql Postgre Oracle DB2 Sybase other
网络管理: 网络安全 网络应用 Linux服务器 环境配置 黑客安全 | 编程开发: PHP CC++ Python Perl Shell 嵌入式开发 java jsp | PHP技术: PHP基础 PHP技巧 PHP应用 PHP文摘
Linux资讯 Linux招聘 Linux专题 Apache | Linux相关: 硬件相关 Linux解决方案 Linux认证 企业应用 其它Unix | 相关下载: 资料下载 参考手册 开发工具 服务器类 软路由 其它
 技术搜索:
会员中心 注册会员 高级搜索  
  → 当前位置:首页>编程开发>php>php应用>正文

用php人工使网页过期

http://www.oklinux.cn  2006-06-22  来源:  phpchina     会员收藏  游客收藏  【 】 

用PHP人工使网页过期     detrox [翻译] 
关键字   网页过期,注册网页编写
出处   http://www.phpbuilder.net/columns/clark20030702.php3
 
 Manually Expiring Web Pages
人工使网页过期

作者: Joe Clark
翻译: detrox


After going through a series of pages during a registration process, you don't want the user to be able to go back after the final submit. What can you do to manually "expire" those pages, and perhaps display a custom message?

在填写完成某注册过程中的一系列网页后,你不想用户能够在最终提交后回到以前的页面。你应该怎样做才能人工地使这些网页过期,并且如果有可能则给出一条已定制好的消息呢。

In this scenario, I didn't want my session to expire as I needed it to continue. Instead, I used an extra session variable to track whether my session was alive or not. There are three main components: (1) the entry script, (2) the Cache-control directive, (3) the conditional check, and (4) manually expiring a portion of the session.

在这一关里,我不想让我的session过期,因为我需要它能够继续运转。我使用一个额外的session变量来跟踪我的session是否为活动的。有三个主要的组件: (1) 入口脚本 (2) 缓存控制指示符 (3)条件检测 和 (4) 人工使一部分session过期。

THE ENTRY SCRIPT
入口脚本
I use an entry script to start my session. This accomplishes two things: (1) destroys any session already in progress, and (2) starts a new session.

我使用一个入口脚本来开始我的session. 它用来完成两件事: (1) 销毁任何已经存在于过程中的session,和(2) 开始一个新的session.

entry.php:

<?
php   session_start();   session_unset();   session_destroy();   session_start();   session_register('alive');   $_SESSION["alive"] = "1";   Header("Location:/php/createaccount.php");?>  
In the above script, we start the session, get rid of any registered session variables with session_unset(), and destroy that session with session_destroy(). Then, we start a new session and register a session variable. This particular variable will track whether this portion of the session is alive or not. We set the variable to some value, then we redirect to our first page in the registration series.

在上面的脚本中,我们开始session, 用session_unset()清除一切已经注册的session变量,并且用session_destory()来销毁先前的session。然后,我们开始一个新的session并且注册一个session变量。这个特定的变量将跟踪表示这部分session是否为活动的。我们将为变量设置一些值,之后重定向到我们的一系列注册网页的第一页。

CACHE-CONTROL AND CONDITIONAL CHECK
缓存控制和条件检测
In the following code snippet, we will auto-detect if the session is still in use.
在下面这段简短的代码中,我们将自动检测session是否仍然正在使用。

createaccount.php:

<?
php   session_start();   header("Cache-control: must-revalidate");      if ($_SESSION["alive"] != "1") {   // User is attempting to go back after the session    was destroyed   //用户试图在session被销毁前返回   Header("Location:/php/error100.php");   }?>  
The "Cache-control" directive above is very important. Using "must-revalidate" tells the browser that it has to fetch the page from the server again instead of loading if from its cache. Because it reloads the page from the server, it will re-check the $_SESSION["alive"] variable to see if its value is "1". If so, the page can load properly. If not, then we'll redirect the user to another page that contains a custom error message. Placing this script at the beginning of every page in the registration series will catch every "Back" button press by the user. It's not enough to place it on the last page in the registration series as a user could press the "Back" button more than one time. I have this snippet in createaccount.php, createaccount1.php, createaccount2.php and createaccount3.php.

上面的缓存控制指示符号非常重要。使用"must-revalidate"告诉浏览器应该用从服务器端读取网页而不是使用从浏览器的缓存中读出。因为从服务器端重新读出的网页将重新检查$_SESSION["alive"]变量看看他的值是否为1。如果是的则网页会被正常读取,如果不是那么我们将把用户重定向到一个定制了错误消息的网页。将这段脚本放到注册系列页的每一页的开始,就可以捕获每一次用户对"Back"按钮的点击。仅把这段脚本放在一系列注册网页的最后一页是不够的,因为用户可能不止一次地点击"Back"按钮。我把这段内容写入了createaccount.php, createaccount1.php, createaccount2.php and createaccount3.php.

MANUALLY EXPIRE THE SESSION
人工地使SESSION过期
The last thing to do is manually "expire" the session, or at least a portion of it. In my case, I wanted the session to stay alive, so I could not use session_unset() or session_destroy(). However, I didn't want the user to go back to the previous pages and change things. Remember that $_SESSION["alive"] variable? After the final submit, all we have to do is get rid of it. There are two ways to do this:

最后一件要做的事就是人工地使session过期,或者至少使一部分过期。在这个情况下,我想要session保持活动,因此我不能使用session_unset() 或者 session_destroy().但无论如何,我不想让用户回到前一页去改变什么。记得$_SESSION["alive"]变量吗?我们要做的就是在最后一次提交后摆脱它。有两个方法可以达到目的

createaccount4.php (the page after the final submit):

 <?php    session_start();    $_SESSION["alive"] = "0"; ?>    or <?php   session_start();   session_unregister('alive'); ?>
Either way will accomplish the same thing. Now, when the "Back" button is pressed, the user won't return the the previous page and be able to change data and resubmit. Instead, they will be redirected to error100.php (or whatever page you choose) and will get a custom error message.

任一方法都可以完成相同的事。现在,当"Back"按钮被按下,用户将不能回到前一页去做数据更改和重复提交。取而代之的是用户将被重定向到error100.php(或者任何你选用的页面)并且得到一个已定制的错误信息。

So, the next time you want to stop the user from going back to change data previously entered, and if you want manual control over it, use this method. Just remember that the entry script sets the session variable to the "alive" state, and the exit script (right after your final submit during the process) sets the session variable to a "not alive" state. The "Cache-control: must-revalidate" forces the browser to reload the page from the server, and the "alive" check is performed. Redirection to a custom page occurs when the session variable is not "alive".

因此,下次当你想阻止用户返回前一页改变以前输入的数据时,如果你想人工的控制它,就是用这个方法吧。记住使用入口脚本设置session变量到"alive"状态,使用出口脚本(在处理过程中最终提交动作的后面)设置session变量到"not alive"状态。"Cache-control: must-revalidate" 强迫浏览器从服务器端重新读取网页,并且实施"alive"检测。当session变量不再为"alive"时,重定向到一个定制页。


上一篇:多php服务器实现多session并发运行   下一篇:通过缓存数据库结果提高PHP性能


收藏于收藏夹】 【评论】 【推荐】 【打印】 【关闭
相关文档
·通过缓存数据库结果提高PHP性能
·多php服务器实现多session并发运行
·利用Yahoo! Search API开发自已的搜索引擎-php版
·通过对php一些服务器端特性的配置加强php的安全
·创造世界上最简单的PHP开发模式
·Windows版本Discuz!??EasyDiscuz!安装介绍
·PHP编制搜索引擎的一些思路
·使用ZendEncode编译PHP程序
·跨主域实现SSO的思路
·Web 2.0 编程思想:16条法则
·winbinder开发php桌面程序
·法国第一位的LeMonde.fr新闻网站转型PHP
·2006 企业级PHP应用软件精彩叠现(转载)
·EasyPublish CMS
·PhpLens系统
·NOLA 系统
发表评论
密码: 匿名评论
评论内容:

(不超过250字,需审核后才会公布,请自觉遵守互联网相关政策法规)
 
  最新文档
·Linux系统上把PHP编译进Apache静态内核
·关于PHP逗点连接符与引号问题
·php有关于正则表达式的详细说明
·通过gd库为图片添加透明水印
·第二节--PHP5 的对象模型
·用php对文件上传处理过程的进一步说明
·PHP分页显示制作详细讲解
·Linux主机重编译PHP支持GD库
·php+ImageMagick+imagick API 配置指南
·php抓取和分析
·第一节--面向对象编程
·php的预定义变量
  阅读排行
·Linux系统上把PHP编译进Apache静态内核
·WASP使用方法简介(3)
·Linux主机重编译PHP支持GD库
·Linux编程之提升PHP执行速度全攻略分析
·MySQL (C API)VC实例及代码下载 (1)
·Windows服务器安装多套PHP的解决方案
·用PHP编程语言开发动态WAP页面
·FleaPHP -- 中国人自己的PHP开发框架
·如何使用动态共享对象的模式来安装PHP
·PHP应用分页显示制作详细讲解
·用php或js获取图片大小,高宽尺寸
·为什么PHP令人不爽(对于大型系统)
·教您如何应用PHP开发出安全的应用程序
·PHP也可以当成Shell Script使用
·winbinder开发php桌面程序
网摘收藏: