Windows11 PHP8.3
報錯:Error: Interface "Psr\SimpleCache\CacheInterface" not found
復(fù)現(xiàn)步驟如下:
安裝項目
composer create-project workerman/webman
cd webman
composer require -W symfony/cache
Index.php
<?php
namespace app\controller;
use support\Cache;
use support\Request;
class IndexController
{
public function index(Request $request)
{
// 默認是file,沒有改
Cache::set('abc', '123');
// Cache::store('file')->set('abc', '123'); 一樣報錯
// Cache::store('array')->set('abc', '123'); 一樣報錯
return '';
}
}
啟動 127.0.0.1:8787 并訪問
報錯:Error: Interface "Psr\SimpleCache\CacheInterface" not found
詳細截圖