我的phpErrorLog告诉我getKeys()已被弃用。
[01-Oct-2020 16:44:02 Europe/Berlin] PHP Deprecated: Function Redis::getKeys() is deprecated in <pathToFile> on line xxx我想知道getKeys的替代方案是什么。不幸的是,我在谷歌上找不到任何东西。
发布于 2020-10-03 00:51:49
您应该能够使用keys来解决此问题。文档指出,getKeys是keys的别名,将在未来版本的phpredis中删除。
https://stackoverflow.com/questions/64168930
复制相似问题