📜  路线 - PHP 代码示例

📅  最后修改于: 2022-03-11 14:54:45.629000             🧑  作者: Mango

代码示例1
* Get the URL to a named route.     *     * @param  string  $name     * @param  mixed  $parameters     * @param  bool  $absolute     * @return string     *     * @throws \Symfony\Component\Routing\Exception\RouteNotFoundException     */    public function route($name, $parameters = [], $absolute = true)    {        if (! is_null($route = $this->routes->getByName($name))) {            return $this->toRoute($route, $parameters, $absolute);        }         throw new RouteNotFoundException("Route [{$name}] not defined.");    }     /**     * Get the URL for a given route instance.     *     * @param  \Illuminate\Routing\Route  $route     * @param  mixed  $parameters     * @param  bool  $absolute     * @return string     *     * @throws \Illuminate\Routing\Exceptions\UrlGenerationException     */    public function toRoute($route, $parameters, $absolute)    {        $parameters = collect(Arr::wrap($parameters))->map(function ($value, $key) use ($route) {