gpt4 book ai didi

PHP PDO - 无法序列化或反序列化 PDO 实例

转载 作者:塔克拉玛干 更新时间:2023-11-03 05:39:23 28 4
gpt4 key购买 nike

我需要将 PDO 连接从 controller 传递到 cart 类,

function __construct($connection) 
{
$this->cart = new cart($connection);
}

但我认为问题出在 serialize()

public function render_page() 
{

if (!isset($_SESSION[SESSION_CART]))
{
$cart = $this->cart;
}
else
{
$cart = unserialize($_SESSION[SESSION_CART]);
}

$_SESSION[SESSION_CART] = serialize($cart);

}

我收到这个错误,

Fatal error: Uncaught exception 'PDOException' with message 'You cannot serialize or unserialize PDO instances' in C:\wamp\www\store_2012_MVC\local\controllers\class_base_extended_cart.php:89 Stack trace: #0 [internal function]: PDO->__sleep() #1 C:\wamp\www\store_2012_MVC\local\controllers\class_base_extended_cart.php(89): serialize(Object(cart)) #2 C:\wamp\www\store_2012_MVC\local\controllers\class_factory.php(75): base_extended_cart->render_page() #3 C:\wamp\www\store_2012_MVC\index.php(69): factory->render() #4 {main} thrown in C:\wamp\www\store_2012_MVC\local\controllers\class_base_extended_cart.php on line 89

我该如何解决这个问题?

或者我可以使用其他东西代替 serialize() 吗?

编辑:

我用 __sleep__wakeup 魔术方法试过了,但仍然得到同样的错误,

class database_pdo
{
# database handler
protected $connection = null;

# make a connection
public function __construct($dsn,$username,$password)
{
try
{

$this->connection = new PDO($dsn, $username, $password, array(PDO::MYSQL_ATTR_INIT_COMMAND => "SET NAMES utf8"));
$this->connection->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);

}
catch (PDOException $e)
{
# call the get_error function
$this->get_error($e);
}
}

# don't forget to add getter method to get $this->connection, it's just a good practice.
public function get_connection()
{
return $this->connection;
}

public function __sleep()
{
return array('connection');
}

public function __wakeup()
{
$this->connection;
}

}

最佳答案

PDO 对象包含到数据库的事件链接(可能有事务启动或数据库 session 设置和变量)。

您不能序列化 PDO 对象,因为上面的内容会丢失并且无法自动重新建立。

您应该重新设计类以使用单独的类(专用于保持数据库连接)静态访问当前数据库链接,而不是将引用保存在成员变量中(我想这发生在您执行 new cart($connection ))).

关于PHP PDO - 无法序列化或反序列化 PDO 实例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10936636/

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