我正在尝试使用 phpcassa 将 DateType 保存到 cassandra 数据库。
这就是我所做的:
$date = new DateTime();
$column_family_commentByPost = new ColumnFamily($pool, 'commentByPost');
$column_family_commentByPost->insert($my_uuid_string1, array($date->getTimestamp() => $my_uuid_string2));
$array = $column_family_commentByPost->get($my_uuid_string1);
var_dump($array);
我收到以下错误:
注意: unserialize(): C:...\DateType.php 第 20 行中 10 个字节的偏移量 0 处出错
使用 php 保存 DateType 的正确方法是什么?