返回并删除名称为srckey的list的尾元素,并将该元素添加到名称为dstkey的list的头部% ?+ h6 ?$ ~8 N: p$ M( `/ n
$redis->delete('x', 'y'); B; l! c* g: f" V+ y
$redis->lPush('x', 'abc'); $redis->lPush('x', 'def'); $redis->lPush('y', '123'); $redis->lPush('y', '456'); // move the last of x to the front of y. var_dump($redis->rpoplpush('x', 'y')); ( E/ Q8 l* p1 T0 y6 N" g- Y$ z9 s; D