标签: php laravel syntax
这是错误所在的行:
return app('cache')->get($arguments[0], $arguments[1] ?? null);
我已经尝试将PHP更新到版本7,但它仍无效。
答案 0 :(得分:0)
试试这个:
return app('cache')->get($arguments[0], isset($arguments[1]) ? $arguments[1] : null);