Home > php教程 > php手册 > 关于SESSION,我想再说一下。

关于SESSION,我想再说一下。

WBOY
Release: 2016-06-21 09:13:08
Original
970 people have browsed it

session

  在WIN32下,不知为什么PHP4处理绝对路径总是有问题。集中表现在extension_dir、upload_tmp_dir和session.save_path这几个设置,无论你怎么设都不行,后来我设成了./,于是都可以了。
  但是问题又来了。session.save_path这个路径是对应于当前执行的PHP文件的,所以,在你使用SESSION时,如果换到了另一个目录下,那么这个SESSION也就没有了。
  当然这些在LINUX下都不存在的。因为LINUX下,都可以用/tmp。

  所以对于这位兄弟的问题,我想可以这样。首先,看你的PHP。INI的内容,session.save_path应该改成./ 。然后,你的程序也有一些问题,我加了一些注释。你可以再试一下。

session_register("abc"); //应该先给变量赋值,再执行些函数
$abc="abcdefg";     //就是说此句应该放到前面。
header("Location: go.php");

?>
//////////////////////////////////////////
//go.php

   session_register("abc");  //这一句是不需要的。
echo "您是 ".$abc."\n";
?>



Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template