0
をキャッシュすると、私が使用して、コントローラのコードがありますキャッシュに関する正しい方法は?巻き戻し機能があれば分かりません。私を啓発してください:はここ応答
public function index(Request $request, Response $response)
{
$view = '/src/views/home.php';
$this->render($response, Settings::ABSPATH . $view);
$body = $response->getBody();
$body->rewind();
$html = $body->getContents();
file_put_contents(Settings::ABSPATH . '/tmp/cachePages/home.html', $html);
return;
}
これはSlim3の権利ですか? – jmattheis
はいこれはスリムです3 –