0

我有以下 PHP 数组,我想将它存储在 Redis 中。我还想在需要执行操作时检索所有数组项。我怎样才能做到这一点。请帮忙。

以下是我的 PHP/redis 代码:

$data['xxx'] = array(
                        'created'           => date("Y-m-d H:i:s"),
                        'tracking_id'       => 'abCd',
                        'affiliate_id'      => 100,
                    );
4

1 回答 1

0

序列化它以在检索后存储和反序列化。Redis 只是存储一个文档。

为了使其不可知,请将其编码为 json:

json_encode($yourArray);

要检索:

$yourData = json_decode($redisStoradeValue);
于 2016-01-24T23:16:33.933 回答