2017 © Pedro Peláez
 

library routing

The PFinal Routing package.

image

pfinal/routing

The PFinal Routing package.

  • Wednesday, April 11, 2018
  • by pfinal
  • Repository
  • 1 Watchers
  • 13 Stars
  • 314 Installations
  • PHP
  • 1 Dependents
  • 0 Suggesters
  • 4 Forks
  • 0 Open issues
  • 15 Versions
  • 1 % Grown

The README.md

Routing

安装

环境要求:PHP >= 5.4、7+, (*1)

composer require pfinal/routing

使用示例, (*2)

require __DIR__ . '/vendor/autoload.php';

use Symfony\Component\HttpFoundation\Request;
use PFinal\Routing\Router;

$router = new Router();

$router->get('/', function () {
    return 'index';
});

$router->any('/blog/:id', function ($id) {
    return $id;
});

$router->post('/blog/:name/update', function ($name) {
    return $name;
});

$request = Request::createFromGlobals();

$response = $router->dispatch($request);
$response->send();

The Versions

11/04 2018

v1.7.3

1.7.3.0 http://www.pfinal.cn

The PFinal Routing package.

  Sources   Download

MIT

The Requires

 

by Zou Yiliang

18/01 2018

v1.7.2

1.7.2.0 http://www.pfinal.cn

The PFinal Routing package.

  Sources   Download

MIT

The Requires

 

by Zou Yiliang

06/01 2018

v1.7.1

1.7.1.0 http://www.pfinal.cn

The PFinal Routing package.

  Sources   Download

MIT

The Requires

 

by Zou Yiliang

26/12 2017

v1.7.0

1.7.0.0 http://www.pfinal.cn

The PFinal Routing package.

  Sources   Download

MIT

The Requires

 

by Zou Yiliang

19/11 2017

v1.6.2

1.6.2.0 http://www.pfinal.cn

The PFinal Routing package.

  Sources   Download

MIT

The Requires

 

by Zou Yiliang

15/08 2017

v1.6.1

1.6.1.0 http://www.pfinal.cn

The PFinal Routing package.

  Sources   Download

MIT

The Requires

 

by Zou Yiliang

12/07 2017

v1.6.0

1.6.0.0 http://www.pfinal.cn

The PFinal Routing package.

  Sources   Download

MIT

The Requires

 

by Zou Yiliang

07/01 2017

1.5

1.5.0.0 http://www.pfinal.cn

The PFinal Routing package.

  Sources   Download

MIT

The Requires

 

by Zou Yiliang

06/01 2017

1.4

1.4.0.0 http://www.pfinal.cn

The PFinal Routing package.

  Sources   Download

MIT

The Requires

 

by Zou Yiliang

23/10 2016

1.3

1.3.0.0 http://www.pfinal.cn

The PFinal Routing package.

  Sources   Download

MIT

The Requires

 

by Zou Yiliang

24/09 2016

1.2

1.2.0.0 http://www.pfinal.cn

The PFinal Routing package.

  Sources   Download

MIT

The Requires

 

by Zou Yiliang

10/09 2016

1.1

1.1.0.0 http://www.pfinal.cn

The PFinal Routing package.

  Sources   Download

MIT

The Requires

 

by Zou Yiliang

10/09 2016

1.0

1.0.0.0 http://www.pfinal.cn

The PFinal Routing package.

  Sources   Download

MIT

The Requires

 

by Zou Yiliang