Skip to content

Instantly share code, notes, and snippets.

@geggleto
Created January 26, 2016 20:56
Show Gist options
  • Select an option

  • Save geggleto/bcece9c6be6133c5d8e0 to your computer and use it in GitHub Desktop.

Select an option

Save geggleto/bcece9c6be6133c5d8e0 to your computer and use it in GitHub Desktop.
slim 3 gist 1
$app->get('/hello[/[{name}]]', function ($req, $res, $args) {
if (!empty($args['name'])) {
return $res->write("Why Hello " . $args['name']);
} else {
return $res->write("Hello!");
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment