1. ホーム
  2. php

[解決済み] 例外が発生しました。Closure'のシリアライゼーションは許可されていません。

2022-02-27 01:01:54

質問

もし、もっとコードが必要であれば、遠慮なくお尋ねください。

このメソッドでは、アプリケーションでZendのinitMailerを設定します。

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/mail/ディレクトリのフォルダにファイルに保存したいと言うことです。

どのように解決するのですか?

無名関数はシリアライズできないようです。

$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");