Skip to content

Instantly share code, notes, and snippets.

@caefer
Created January 11, 2012 10:39
Show Gist options
  • Save caefer/1594099 to your computer and use it in GitHub Desktop.
Save caefer/1594099 to your computer and use it in GitHub Desktop.
<?php
// framework laden
require_once __DIR__.'/silex.phar';
// neue Silex app instanziieren
$app = new Silex\Application();
// die Route '/' mit einer sog. anonymen function beantworten, die 'hello world!' zurückgibt
$app->get('/', function() use($app) {
return 'hello world!';
});
// zweite Route, die einen Parameter 'name' in der URL erwartet
$app->get('/hello/{name}', function($name) use($app) {
return 'hello '.$app->escape($name).'!';
});
// die app starten
$app->run();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment