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

时间:2010-02-09 19:26:12

标签: php zend-framework

我正在尝试使用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 个答案:

答案 0 :(得分:5)

也许你刚刚发了一个复制粘贴错误或拼写错误,但是,在你发布的代码中,你有:

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

即。您将automatic_seralization设置为true,而不是automatic_serialization:请注意ser- i -alization中的 i