Slim Framework 入門

安裝或設定 Slim 框架

  • 安裝 Composer
  • 開啟 cmd
  • 轉到專案資料夾的根目錄並執行以下命令。

作曲家需要苗條/苗條“^ 3.0”

現在,你的專案中將包含供應商目錄

接下來在根資料夾中建立 Index.php 並新增以下程式碼

<?php
use \Psr\Http\Message\ServerRequestInterface as Request;
use \Psr\Http\Message\ResponseInterface as Response;

require 'vendor/autoload.php';

$app = new \Slim\App;
$app->get('/hello/{name}', function (Request $request, Response $response) {
    $name = $request->getAttribute('name');
    $response->getBody()->write("Hello, $name");

    return $response;
});
$app->run();

然後在 Localhost 上執行 Project 並嘗試使用以下命令

HTTP://localhost/project-root/index.php/hello/any-thing

輸出

你好任何東西