現在、私はubuntuを使用しており、私のシステムにPHP Slim framework
をインストールしたいと思います。スリムフレームワークが動作していません
私は作者をインストールして、手動でSlimフレームワークをインストールしてから、slimフォルダにindex.phpファイルを作成し、次のコードをそのファイルに入れて、そのファイルを表示しようとしたときに表示しません。
<?php
require 'vendor/autoload.php';
$app = new SlimApp();
//slim application routes
$app->get('/', function ($request, $response, $args) {
$response->write("Welcome: This is AlphansoTech Tutorial Guide");
return $response;
});
$app->run()
?>
http://localhost/slim/index.php
に電話してみましたが、空白の画面が表示されました。
初めてスリムフレームワークをインストールして使用するときに何が起こるのか分かりません。
スリムなフレームワークをインストールするために、次のURLを試しました。スリムなフレームワークを使用してAPIをインストールまたは実行する方法
http://www.alphansotech.com/blogs/php-restful-api-framework-slim-tutorial/
https://www.slimframework.com/docs/tutorial/first-app.html
https://www.slimframework.com/docs/start/installation.html
?
インストールガイドを確認しましたか? https://www.slimframework.com/docs/start/installation.html –