承接 marrios/mareaturborouter 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

marrios/mareaturborouter

最新稳定版本:v0.2.1

Composer 安装命令:

composer require marrios/mareaturborouter

包简介

Route manager

README 文档

README

PHP Version 8.1^

VRUMMMMMMMMMMMMMMMM

Total Downloads Latest Stable Version License

@marriosdev


Starting

composer require marrios/mareaturborouter

Copy

<?php

require_once("vendor/autoload.php");

use MareaTurbo\Router;

use MareaTurbo\Route;

class ControllerTeste
{
    public function __construct()
    {}

    #[Route("/teste/{id}", "GET", "route.name")]
    public function teste($request)
    {
        // get all parameters
        $request->all();

        // get only id parameter
        echo $request->only(["id"])['id'];
    }
}

// Register  controllers
(new Router())->controllers([
    ControllerTeste::class
]);

In your browser, access the URL: http://localhost/teste/123
And you will see the result: 123


You can run this route in CLI mode

php .\index.php GET /teste/123

统计信息

  • 总下载量: 40
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 13
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 13
  • Watchers: 1
  • Forks: 2
  • 开发语言: PHP

其他信息

  • 授权协议: GPL-3.0
  • 更新时间: 2023-12-05