我想在 Rediska 中创建一个 List 的新实例,但它似乎总是想使用一些全局列表。
例如,这是我用来创建新列表的代码:
$firstList = new Rediska_Key_List('newList');
$firstList[] = "firstList: first element";
$firstList[] = "firstList: second element";
$secondList = new Rediska_Key_List('newList');
$secondList[] = "secondList: first element";
$secondList[] = "secondList: second element";
echo "$secondList[0] and $secondList[1]";
它将回显以下内容:firstList: first element and firstList: second element
据推测,这是因为 Rediska_Key_List 的第一个参数是相同的名称。我不需要这个。我只想创建一个新的无名实例。我不能将第一个参数留空。我希望脚本打印以下内容:
`secondList: first element and secondList: second element`
谢谢!