Hello World 的例子
<?php
include "vendor/autoload.php";
$app = new \Slim\App();
$app->get('/hello', function () {
echo "Hello, world";
});
$app->run();
<?php
include "vendor/autoload.php";
$app = new \Slim\App();
$app->get('/hello', function () {
echo "Hello, world";
});
$app->run();