Created
January 11, 2012 10:39
-
-
Save caefer/1594099 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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