如何在路由中使用通配符重定向

时间:2016-10-15 01:02:04

标签: php laravel

如何使用路线中的变量重定向:

$id = 8;
return redirect('/userpage/{$id}');

路线:

Route::get('/userpage/{id}', 'UserController@userpage');

控制器:

public function userpage($id)
{
    return $id;        
}

显示{$ id}。

1 个答案:

答案 0 :(得分:1)

只需将ID附加到网址。

return redirect('/userpage/' . $id);

或使用双引号字符串

return redirect("/userpage/{$id}");