我有一些代码正在对PDOException
进行序列化,通过网络发送它,然后在以后对其进行反序列化。当我反序列化它时,$code
属性似乎丢失了。该对象的其余部分保持不变。
我的代码针对PostgreSQL数据库运行。使用以下DDL:
CREATE TABLE test (
id INTEGER
);
使用以下代码重现我的问题(替换您自己的PostgeSQL连接值):
<?php
$dsn = "pgsql: dbname=postgres;host=/var/run/postgresql;port=5432";
$user = "postgres";
$password = "";
try
{
$pdo = new PDO($dsn, $user, $password);
$pdo->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
$res = $pdo->exec("INSERT INTO test (id) VALUES (999999999999999)");
}
catch (PDOException $e)
{
var_dump((array) $e);
print "\n";
print $e->getCode();
print "\n";
$s = serialize($e);
print $s;
print "\n";
$d = unserialize($s);
var_dump((array) $d);
print "\n";
print $d->getCode();
print "\n";
print serialize($e->getCode());
print "\n";
}
?>
在我的输出中,最终输出中缺少$code
属性。此外,我还会收到以下通知:
PHP Notice: Undefined property: PDOException::$code in /home/developer/test_serialize.php on line 20
我发现我实际上必须执行失败的SQL语句才能看到此问题。特别是,例如,如果我选择了错误的端口号,那么我会得到一个PDOException
,但是它将在$code
调用后保留unserialize
属性。
请注意,序列化的字符串似乎在其中具有code属性,因此我假设这是unserialize
函数的问题。
任何见识都会受到赞赏-我是否误解了这里的基本知识?这是PHP错误吗?还有吗我使用的是以下PHP版本:
PHP 7.1.6 (cli) (built: Jun 18 2018 12:25:10) ( ZTS )
Copyright (c) 1997-2017 The PHP Group
Zend Engine v3.1.0, Copyright (c) 1998-2017 Zend Technologies
编辑-添加打印输出
以下是复制脚本的输出。请注意,我已稍作修改以添加一些换行符以提高可读性,并将print_r
替换为var_dump
:
array(8) {
["*message"]=>
string(75) "SQLSTATE[22003]: Numeric value out of range: 7 ERROR: integer out of range"
["Exceptionstring"]=>
string(0) ""
["*code"]=>
string(5) "22003"
["*file"]=>
string(34) "/home/developer/test_serialize.php"
["*line"]=>
int(10)
["Exceptiontrace"]=>
array(1) {
[0]=>
array(6) {
["file"]=>
string(34) "/home/developer/test_serialize.php"
["line"]=>
int(10)
["function"]=>
string(4) "exec"
["class"]=>
string(3) "PDO"
["type"]=>
string(2) "->"
["args"]=>
array(1) {
[0]=>
string(73) "INSERT INTO km_role (role_id, role_name) VALUES (999999999999999, 'test')"
}
}
}
["Exceptionprevious"]=>
NULL
["errorInfo"]=>
array(3) {
[0]=>
string(5) "22003"
[1]=>
int(7)
[2]=>
string(28) "ERROR: integer out of range"
}
}
22003
O:12:"PDOException":8:{s:10:"*message";s:75:"SQLSTATE[22003]: Numeric value out of range: 7 ERROR: integer out of range";s:17:"Exceptionstring";s:0:"";s:7:"*code";s:5:"22003";s:7:"*file";s:34:"/home/developer/test_serialize.php";s:7:"*line";i:10;s:16:"Exceptiontrace";a:1:{i:0;a:6:{s:4:"file";s:34:"/home/developer/test_serialize.php";s:4:"line";i:10;s:8:"function";s:4:"exec";s:5:"class";s:3:"PDO";s:4:"type";s:2:"->";s:4:"args";a:1:{i:0;s:73:"INSERT INTO km_role (role_id, role_name) VALUES (999999999999999, 'test')";}}}s:19:"Exceptionprevious";N;s:9:"errorInfo";a:3:{i:0;s:5:"22003";i:1;i:7;i:2;s:28:"ERROR: integer out of range";}}
array(7) {
["*message"]=>
string(75) "SQLSTATE[22003]: Numeric value out of range: 7 ERROR: integer out of range"
["Exceptionstring"]=>
string(0) ""
["*file"]=>
string(34) "/home/developer/test_serialize.php"
["*line"]=>
int(10)
["Exceptiontrace"]=>
array(1) {
[0]=>
array(6) {
["file"]=>
string(34) "/home/developer/test_serialize.php"
["line"]=>
int(10)
["function"]=>
string(4) "exec"
["class"]=>
string(3) "PDO"
["type"]=>
string(2) "->"
["args"]=>
array(1) {
[0]=>
string(73) "INSERT INTO km_role (role_id, role_name) VALUES (999999999999999, 'test')"
}
}
}
["Exceptionprevious"]=>
NULL
["errorInfo"]=>
array(3) {
[0]=>
string(5) "22003"
[1]=>
int(7)
[2]=>
string(28) "ERROR: integer out of range"
}
}
PHP Notice: Undefined property: PDOException::$code in /home/developer/test_serialize.php on line 24
s:5:"22003"
在通过不正确的端口号引发PDOException的示例中,序列化的$e->getCode()
为:
i:7;
答案 0 :(得分:5)
首先看一下PDOException类:
PDOException extends RuntimeException {
/* Properties */
public array $errorInfo ;
protected string $code ;
/* Inherited properties */
protected string $message ;
protected int $code ;
protected string $file ;
protected int $line ;
/* Inherited methods */
final public string Exception::getMessage ( void )
final public Throwable Exception::getPrevious ( void )
final public mixed Exception::getCode ( void )
final public string Exception::getFile ( void )
final public int Exception::getLine ( void )
final public array Exception::getTrace ( void )
final public string Exception::getTraceAsString ( void )
public string Exception::__toString ( void )
final private void Exception::__clone ( void )
}
PHP中的getCode()方法就是这样实现的(参考:https://github.com/php/php-src/blob/cd953269d3d486f775f1935731b1d6d44f12a350/ext/spl/spl.php):
/** @return the code passed to the constructor
*/
final public function getCode()
{
return $this->code;
}
这是PHP异常的构造函数:
/** Construct an exception
*
* @param $message Some text describing the exception
* @param $code Some code describing the exception
*/
function __construct($message = NULL, $code = 0) {
if (func_num_args()) {
$this->message = $message;
}
$this->code = $code;
$this->file = __FILE__; // of throw clause
$this->line = __LINE__; // of throw clause
$this->trace = debug_backtrace();
$this->string = StringFormat($this);
}
那告诉我们什么? 仅当生成异常时才填充异常的$code
属性,如果未传递$code
,则该异常的属性应为零。
这是PHP错误吗?我想不是,经过一番研究,我发现了以下精彩文章:http://fabien.potencier.org/php-serialization-stack-traces-and-exceptions.html
从本质上说:
PHP序列化异常时,它将序列化异常代码,异常消息以及堆栈跟踪。
堆栈跟踪是一个数组,其中包含在脚本此刻已经执行的所有函数和方法。跟踪包含文件名,文件中的行,函数名以及传递给函数的所有参数的数组。你发现问题了吗?
堆栈跟踪包含对PDO实例的引用,该引用已传递给will_crash()函数,并且由于PDO实例不可序列化,因此当PHP序列化堆栈跟踪时会引发异常。
每当堆栈跟踪中存在不可序列化的对象时, 异常无法序列化。
我想这就是我们的serialize()/ unserialize()进程失败的原因-因为Exception不可序列化。
解决方案:
编写可扩展异常的可序列化异常
class SerializableException extends Exception implements Serializable {
// ... go ahead :-)
}
答案 1 :(得分:4)
Blackbam的答案很特殊,但是无法序列化的PDO对象是红色鲱鱼。您的代码存在问题实际上是由于$code
属性的类型所致,正如他的评论中所述。在某些情况下,异常是使用错误代码的字符串表示形式而不是整数初始化的。这会破坏反序列化,反序列化非常合理地决定丢弃具有无效类型的属性。
PDOException documentation page上的注释几乎都在讨论由将错误代码创建为字符串而不是整数而导致的问题。
您可以使用反射将保护值设置为整数。见下文:
try
{
$pdo = new PDO($dsn, $user, $password);
$pdo->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
$res = $pdo->exec("INSERT INTO test_schema.test (id) VALUES (999999999999999)");
}
catch (PDOException $e)
{
// the new bit is here
if (!is_int($e->getCode())) {
$reflectionClass = new ReflectionClass($e);
$reflectionProperty = $reflectionClass->getProperty('code');
$reflectionProperty->setAccessible(true);
$reflectionProperty->setValue($e, (int)$reflectionProperty->getValue($e));
}
// the rest is the same
var_dump((array) $e);
print "\n";
print $e->getCode();
print "\n";
$s = serialize($e);
print $s;
print "\n";
$d = unserialize($s);
var_dump((array) $d);
print "\n";
print $d->getCode();
print "\n";
print serialize($e->getCode());
print "\n";
}
当然,如果代码包含字母数字值而不是整数字符串,则会丢失信息。该消息可能会重复错误号,但可能不太值得依靠。
Blackbam关心的无法序列化的堆栈跟踪可能会变成问题,如果您稍微调整一下代码:
function will_crash($pdo) {
$res = $pdo->exec("INSERT INTO test_schema.test (id) VALUES (999999999999999)");
}
try
{
$pdo = new PDO($dsn, $user, $password);
$pdo->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
will_crash($pdo);
}
catch (PDOException $e)
{
$s = serialize($e);
// PHP Fatal error: Uncaught PDOException: You cannot serialize or unserialize PDO instances in...
}
哇。
因此,Blackbam的答案以及他创建可序列化异常类的链接中的方法,可能是可行的方法。这样,您就可以序列化异常的数据,但不能序列化堆栈跟踪。
然后,在那时,您最好也使用json_encode
和json_decode
来传递/存储异常信息。