例外:“封闭”的序列化是不允许的(Exception: Serialization of '

2019-06-21 16:23发布

所以,我不知道到底是什么我会向你展示的家伙,怎么过,如果你需要更多的代码,请不要犹豫,问:

因此,这种方法将设置为initMailer Zend公司与我们的应用程序:

protected function _initMailer()
{
    if ('testing' !==  APPLICATION_ENV) {
        $this->bootstrap('Config');
        $options = $this->getOptions();
        $mail = new Zend_Application_Resource_Mail($options['mail']);
    }elseif ('testing'  ===  APPLICATION_ENV) {
        //change the mail transport only if dev or test
        if (APPLICATION_ENV <> 'production') {

            $callback = function()
            {
                return 'ZendMail_' . microtime(true) .'.tmp';
            };

            $mail = new Zend_Mail_Transport_File(
                array('path' => '/tmp/mail/',
                        'callback'=>$callback
                )
            );

            Zend_Mail::setDefaultTransport($mail);
        }
    }


    return $mail;
}

你可以看到,在位于闭合当我运行使用此代码我得到任何的测试:

Exception: Serialization of 'Closure' is not allowed 

因此,所有关于这个“封闭”测试失败。 所以我在这里问你们我应该做的。

为了澄清以上,所有正在做的是说,我们发送的任何电子邮件,我们要存储有关的文件在/ tmp /邮件/目录下的文件夹中的电子邮件信息。

Answer 1:

显然,匿名函数不能被序列化。

$function = function () {
    return "ABC";
};
serialize($function); // would throw error

从你的代码中使用的关闭:

$callback = function () // <---------------------- Issue
{
    return 'ZendMail_' . microtime(true) . '.tmp';
};

解决方法1:使用普通函数替换

function emailCallback() {
    return 'ZendMail_' . microtime(true) . '.tmp';
}
$callback = "emailCallback" ;

解决方案2:由数组变量间接方法调用

如果你看一下http://docs.mnkras.com/libraries_23rdparty_2_zend_2_mail_2_transport_2file_8php_source.html

   public function __construct($options = null)
   63     {
   64         if ($options instanceof Zend_Config) {
   65             $options = $options->toArray();
   66         } elseif (!is_array($options)) {
   67             $options = array();
   68         }
   69 
   70         // Making sure we have some defaults to work with
   71         if (!isset($options['path'])) {
   72             $options['path'] = sys_get_temp_dir();
   73         }
   74         if (!isset($options['callback'])) {
   75             $options['callback'] = array($this, 'defaultCallback'); <- here
   76         }
   77 
   78         $this->setOptions($options);
   79     }

您可以使用同样的方法来发送回调

$callback = array($this,"aMethodInYourClass");


Answer 2:

直接关闭序列化PHP不容许。 但是你可以使用像PHP超级封闭powefull类: https://github.com/jeremeamia/super_closure

这个类是非常简单的使用和被捆绑到队列管理器的laravel框架。

从GitHub的文档:

$helloWorld = new SerializableClosure(function ($name = 'World') use ($greeting) {
    echo "{$greeting}, {$name}!\n";
});

$serialized = serialize($helloWorld);


Answer 3:

如前所述:关闭,开箱即用的,不能被序列化。

但是,使用__sleep() __wakeup()神奇的方法和反思U可以手动进行关闭序列化。 欲了解更多详情,请参见扩展-PHP-5-3-关闭,与序列化和反射

这使得利用反射和PHP函数eval的。 请注意,这开辟了代码注入的可能性,所以请把你的序列化的通知。



Answer 4:

你必须禁用全局

 /**
 * @backupGlobals disabled
 */


文章来源: Exception: Serialization of 'Closure' is not allowed