当前位置:  开发笔记 > 编程语言 > 正文

Zend_Cache - "数据必须是字符串或设置automatic_serialization = true"

如何解决《Zend_Cache-"数据必须是字符串或设置automatic_serialization=true"》经验,为你挑选了1个好方法。

我试图用Zend_Cache缓存一个数组,如下所示:

$cache = Zend_Registry::get('cache');
// $data is an array
$cache->save($data, 'externalData');

我收到这个错误:

Message: Datas must be string or set automatic_serialization = true

即使在bootstrap文件中初始化Zend_Cache时设置了true_serialization:

protected function _initCache()
{
    $frontend= array('lifetime' => 7200,
                     'automatic_seralization' => true);
    $backend= array('cache_dir' => 'cache');
    $this->cache = Zend_Cache::factory('core',
                                       'File',
                                       $frontend,
                                       $backend);
}

什么可能导致此错误消息?



1> Pascal MARTI..:

也许您只是制作了复制粘贴错误或拼写错误,但是,在您发布的代码中,您有:

$frontend= array('lifetime' => 7200,
                 'automatic_seralization' => true);

即要设置automatic_seralization为true,而不是automatic_serialization:注意在丝氨酸 -alization.

推荐阅读
php
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有