$template = new Template($mysqli);
$_SESSION['template'] = serialize($template);
现在,这应该创建一个品牌打击新对象并将其分配给会话。然后我有一些代码通过AJAX请求添加项目。该代码如下:
$template = unserialize($_SESSION['template']);
$prodid = $_GET['product_id'];
$template->addItem($prodid);
echo var_dump($template->getItems());
$_SESSION['template'] = serialize($template);
再次,应该很简单。现在问题是,第一部分代码没有重置$_SESSION['template']
,所以我得到了迄今为止我添加的所有项目,重新加载页面无法修复它。
我发现该文件导致恶作剧,但我不知道我能做些什么。它是一个包含,它是网站不同部分运行所必需的。我正在为网站添加功能,如果我删除功能,我不认为所有者会讨厌。这是文件:
<?php
include_once( 'DBE.class.php' ) ;
################################################
# Function: Sessions_open
# Parameters: $path (string), $name (string)
# Returns: bool
# Description: This is an over-ride function call
# that we need to create so that the php internal
# session manager doesn't store our session in the
# file system, since we are storing it in the
# db. Storing a session in a file system on the
# server inhibits scalability for two reasons:
# 1: A large number of users may be hitting the site
# and clog the space on the hard-drive of the server
# due to the sheer amount of session files stored
# 2: The website may be behind a load-balancer and
# therefore the server handling the page request
# may not have the session stored on its file system
################################################
function Sessions_open ( $path, $name ) {
return TRUE ;
}
################################################
# Function: Sessions_close
# Parameters: N/A
# Returns: bool
# Description: This is an over-ride function call
# that we need to create so that the php internal
# session manager doesn't store our session in the
# file system, since we are storing it in the
# db. Storing a session in a file system on the
# server inhibits scalability for two reasons:
# 1: A large number of users may be hitting the site
# and clog the space on the hard-drive of the server
# due to the sheer amount of session files stored
# 2: The website may be behind a load-balancer and
# therefore the server handling the page request
# may not have the session stored on its file system
################################################
function Sessions_close () {
return TRUE ;
}
################################################
# Function: Sessions_read
# Parameters: $SessionID (string)
# Returns: (string) or (false) on error
# Description: This function is used at startup to read
# the contents of the session.
# If no sess data, the empty string ("") is returned.
# Otherwise, the serialized sess data is returned.
# On error, false is returned.
################################################
function Sessions_read ( $SessionID ) {
include_once( 'DBE.class.php' ) ;
$dbe = new DBE() ;
//default return value to false
$returnVal = FALSE ;
$query = "SELECT DataValue
FROM Sessions
WHERE SessionID = '$SessionID' " ;
$result = $dbe->Select( $query ) ;
if( count( $result ) == 1 ) {
$returnVal = $result[0]['DataValue'] ;
//update the session so that we don't time-out after creating
$query = "UPDATE Sessions
SET LastUpdated = NOW()
WHERE SessionID = '$SessionID'" ;
$dbe->Update( $query ) ;
} else {
//Insert here to simplify the write function
$query = "INSERT INTO Sessions (SessionID, DataValue) VALUES ( '$SessionID', '' )" ;
$dbe->Insert( $query ) ; //pass the insert stmt
//set returnVal to '' being that we didn't find the SessionID
$returnVal = '' ;
}
return( $returnVal ) ;
}
################################################
# Function: Sessions_write
# Parameters: $SessionID (string), $Data
# Returns: bool
# Description: This function is used at startup to read
# the contents of the session.
# If no sess data, the empty string ("") is returned.
# Otherwise, the serialized sess data is returned.
# On error, false is returned.
################################################
function Sessions_write( $SessionID, $Data ) {
include_once( 'DBE.class.php' ) ;
$dbe = new DBE() ;
//default to true
$returnVal = TRUE ;
//update the session
$query = "UPDATE Sessions
SET DataValue = '$Data'
WHERE SessionID = '$SessionID'" ;
$result = $dbe->Update( $query ) ; //pass the update stmt to the dbEngine..
//test for success
if( $result == -1 )
$returnVal = FALSE ;
//return the return value
return( $returnVal ) ;
}
################################################
# Function: Sessions_delete
# Parameters: $SessionID (string)
# Returns: bool
# Description: This function is used to delete the session
################################################
function Sessions_destroy( $SessionID ) {
include_once( 'DBE.class.php' ) ;
$dbe = new DBE() ;
$query = "DELETE FROM Sessions WHERE SessionID = '$SessionID' " ;
$dbe->Delete( $query ) ;
return( TRUE ) ;
}
################################################
# Function: Sessions_delete
# Parameters: $SessionID (string)
# Returns: bool
# Description: This function is used to delete the session
################################################
function Sessions_gc( $aMaxLifetime ) {
include_once( 'DBE.class.php' ) ;
$dbe = new DBE() ;
$query = "DELETE FROM Sessions WHERE (UNIX_TIMESTAMP(NOW()) - UNIX_TIMESTAMP( LastUpdated )) > $aMaxLifetime " ;
$dbe->Delete( $query ) ;
return( TRUE ) ;
}
session_set_save_handler( "Sessions_open", "Sessions_close",
"Sessions_read", "Sessions_write",
"Sessions_destroy", "Sessions_gc" ) ;
?>
我认为这会改变会话的基本功能,但我不太确定。这导致我在会话中重置模板时遇到麻烦。任何人都有任何想法或知道我可以做些什么来解决这个问题。我非常难过,所以非常感谢任何帮助。
答案 0 :(得分:5)
我不确定这是不是问题,但是当我阅读你的代码时,这就是跳出来的:
您的序列化对象依赖于mysql连接
$ template = new Template($ mysqli);
虽然您的对象(可能)可以序列化和未序列化而没有问题,但mysql连接不能,因此您的未序列化的$ template会尝试对无效的连接/文件句柄进行操作。
您可以尝试将未序列化的对象重新附加到有效的数据库连接。
不知道你的模板类里面有什么(以及它使用了什么资源以及如何使用),很难猜出什么是错的,但我希望这是一个很好的线索,可以从哪里开始寻找。
为了让您更好地了解我在说什么,请考虑一下:
<?php
class Template {
function __construct($c) {
$this->conn = $c;
$this->foo = "bar";
}
function get_data() {
$result = mysql_query("select 1234 as test", $this->conn);
$data = mysql_fetch_array($result);
return $data;
}
function attach_db($c) {
$this->conn = $c;
}
}
?>
<?php
session_start();
require('template.php');
$conn = mysql_connect('localhost', 'root', '');
$template = new Template($conn);
?>
<pre>
Your $template var, freshly created:
<?php var_dump($template); ?>
Accessing the resources:
<?php var_dump($template->get_data()); ?>
<?php
$_SESSION['template'] = serialize($template);
?>
</pre>
<?php
session_start();
require('template.php');
$template = unserialize($_SESSION['template']);
?>
<pre>
Unserialized $template:
<?php var_dump($template); ?>
(notice that $template->foo === "bar" so your session un/serialization is working correctly)
Accessing the (now invalid) mysql resources:
<?php var_dump($template->get_data()); ?>
</pre>
调用first.php会给你这个:
您的$ template var,刚创建:
对象(模板)#1(2){
[ “conn将”] =&GT;
资源(3)类型(mysql链接)
[ “foo” 的] =&GT;
string(3)“bar”
}访问资源:
数组(2){
[0] =&GT;
string(4)“1234”
[ “测试”] =&GT;
string(4)“1234”
}
调用others.php应该会导致:
未序列化的$ template:
对象(模板)#1(2){
[ “conn将”] =&GT;
INT(0)
[ “foo” 的] =&GT;
string(3)“bar”
}
(注意$ template-&gt; foo ===“bar”所以你的会话un /序列化工作正常)访问(现在无效的)mysql资源:
警告:mysql_query():提供的参数不是第9行template.php中的有效MySQL-Link资源
警告:mysql_fetch_array():提供的参数不是第10行template.php中的有效MySQL结果资源
布尔(假)
要解决此问题,您可以重新创建无法取消/序列化的资源 像这样:
<?php
session_start();
require('template.php');
$template = unserialize($_SESSION['template']);
?>
<pre>
Unserialized $template:
<?php var_dump($template); ?>
Attaching a valid db connection:
<?php
$conn = mysql_connect('localhost', 'root', '');
$template->attach_db($conn);
var_dump($template);
?>
Accessing the resources:
<?php var_dump($template->get_data()); ?>
</pre>
现在,在调用first.php之后调用solution.php会给你这个:
未序列化的$ template:
对象(模板)#1(2){
[ “conn将”] =&GT;
INT(0)
[ “foo” 的] =&GT;
string(3)“bar”
}附加有效的数据库连接:
对象(模板)#1(2){
[ “conn将”] =&GT;
资源(3)类型(mysql链接)
[ “foo” 的] =&GT;
string(3)“bar”
}访问资源:
数组(2){
[0] =&GT;
string(4)“1234”
[ “测试”] =&GT;
string(4)“1234”
}
正如我所说的,在不知道你的模板类是什么的情况下,不可能确定发生了什么......这只是一种可能性;)
祝你好运!答案 1 :(得分:1)
看起来他们正在重写标准会话处理程序,以便在数据库中存储会话数据。
查看Sessions表并检查序列化对象是否正确存储。
答案 2 :(得分:0)
那么,您应该能够检查数据库以查看数据的存储方式(如果有的话)。这肯定是我要开始的地方。
答案 3 :(得分:0)
您的AJAX调用可能不包含会话cookie数据,并且正在写入不同的会话。
您可以使用Fiddler并确定发送的确切请求吗?