Silex

1 개요[ | ]

Silex
실렉스
$app = new Silex\Application();

$app->get('/', function() use($app) { 
    return 'Hello World!';
});

$app->get('/hello/{name}', function($name) use($app) { 
    return 'Hello '.$app->escape($name); 
});

$app->run();

2 같이 보기[ | ]

3 참고[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}