我在任何地方都找不到它。所以我问:在 silex 上,我们为什么要使用 bind() 呢?例如,在这个静态页面的路由上:
$pages = array(
'/' => 'index',
'/blog' => 'blog',
'/about' => 'about',
);
foreach($pages as $route => $view) {
$api->get($route, function(Silex\Application $app) use($view) {
return $app['twig']->render($view.'.html');
})->bind($view);
}