0
Slimにアレイ出力を書き込むにはどうしたらいいですか?スリムフレームワーク - テンプレートなしで配列を出力するには?
$app->get('/', function ($request, $response, $args) {
$array = ['message' => 'Hello World'];
$response->getBody()->write($array);
return $response;
});
エラー:
Slim Application Error The application could not run because of the following error:
Details
Type: RuntimeException Message: Could not write to stream File: /var/www/slim/vendor/slim/slim/Slim/Http/Stream.php Line: 407
私はちょうど出力任意のテンプレートなしで画面に配列、またJSONにしたいです。出来ますか?