Skip to content

Instantly share code, notes, and snippets.

@caefer
Created January 12, 2012 14:42
Show Gist options
  • Save caefer/1600899 to your computer and use it in GitHub Desktop.
Save caefer/1600899 to your computer and use it in GitHub Desktop.
$app->get('/', function () use ($urls) {
$output = '';
foreach ($urls as $url) {
$output .= $url;
}
return $output;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment