使用闭包的序列化异常
问题:
在 _initMailer 方法中使用闭包时,测试失败,但出现以下异常:“不允许序列化‘闭包’。”
原因:
匿名函数无法序列化。在提供的代码中,闭包用作 Zend_Mail_Transport_File 传输的回调参数。
解决方案 1:用常规函数替换闭包
将闭包替换为在 _initMailer 方法外部定义的常规函数。例如:
<code class="php">function emailCallback() { return 'ZendMail_' . microtime(true) . '.tmp'; } $callback = "emailCallback";</code>
解决方案 2:通过数组变量使用间接方法调用
或者,您可以使用数组变量来间接调用类中的方法作为回调。有关更多详细信息,请参阅 Zend Mail 文档:
<code class="php">$callback = array($this, "aMethodInYourClass");</code>
以上是如何解决 Zend Mail Transport 中的闭包序列化异常?的详细内容。更多信息请关注PHP中文网其他相关文章!