• This repository has been archived on 06/Dec/2022
  • Stars
    star
    564
  • Rank 78,739 (Top 2 %)
  • Language
    PHP
  • License
    MIT License
  • Created almost 13 years ago
  • Updated over 2 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Simple PHP Router class (supports REST and reverse routing)

PHP Router class

Latest Stable Version Total Downloads Latest Unstable Version License

A simple Rails inspired PHP router class.

  • Usage of different HTTP Methods
  • REST / Resourceful routing
  • Reversed routing using named routes
  • Dynamic URL's: use URL segments as parameters.

Authors

Easy to install with composer

$ composer require dannyvankooten/php-router

Usage

Friendly URL

Create a simple .htaccess file on your root directory if you're using Apache with mod_rewrite enabled.

Options +FollowSymLinks
RewriteEngine On
RewriteRule ^(.*)$ index.php [NC,L]

If you're using nginx, setup your server section as following:

server {
	listen 80;
	server_name mydevsite.dev;
	root /var/www/mydevsite/public;

	index index.php;

	location / {
		try_files $uri $uri/ /index.php?$query_string;
	}

	location ~ \.php$ {
		fastcgi_split_path_info ^(.+\.php)(/.+)$;
		# NOTE: You should have "cgi.fix_pathinfo = 0;" in php.ini

		# With php5-fpm:
		fastcgi_pass unix:/var/run/php5-fpm.sock;
		fastcgi_index index.php;
		include fastcgi.conf;
		fastcgi_intercept_errors on;
	}
}

This is a simple example of routers in action

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

use PHPRouter\RouteCollection;
use PHPRouter\Router;
use PHPRouter\Route;

$collection = new RouteCollection();
$collection->attachRoute(new Route('/users/', array(
    '_controller' => 'someController::usersCreate',
    'methods' => 'GET'
)));

$collection->attachRoute(new Route('/', array(
    '_controller' => 'someController::indexAction',
    'methods' => 'GET'
)));

$router = new Router($collection);
$router->setBasePath('/PHP-Router');
$route = $router->matchCurrentRequest();

var_dump($route);

Load routers from a yaml file

We can define in a yaml file all the routes of our application. This facilitates our life when we need to migrate, modify, or later add new routes.

The route definition should follow the example below:

base_path: /blog

routes:
  index: [/index, someClass.indexAction, GET]
  contact: [/contact, someClass.contactAction, GET]
  about: [/about, someClass.aboutAction, GET]

In our Front Controller would have something like:

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

use PHPRouter\RouteCollection;
use PHPRouter\Config;
use PHPRouter\Router;
use PHPRouter\Route;

$config = Config::loadFromFile(__DIR__.'/router.yaml');
$router = Router::parseConfig($config);
$router->matchCurrentRequest();

More information

If you like PHP Router you might also like AltoRouter.

License

MIT Licensed, http://www.opensource.org/licenses/MIT

More Repositories

1

AltoRouter

PHP routing class. Lightweight yet flexible. Supports REST, dynamic and reversed routing.
PHP
1,215
star
2

laravel-vat

EU VAT library for Laravel
PHP
121
star
3

vat

Go package for dealing with EU VAT. Does VAT number validation & rates retrieval.
Go
112
star
4

grender

Go package for easily rendering JSON/XML data and HTML templates
Go
95
star
5

plugin-endpoints

Register URL endpoints for which only certain WordPress plugins are enabled.
PHP
84
star
6

1brc

C11 implementation of the 1 Billion Rows Challenge. 1๏ธโƒฃ๐Ÿ๐ŸŽ๏ธ Runs in ~1.6 seconds on my not-so-fast laptop CPU w/ 16GB RAM.
C
82
star
7

populate.js

Populate form fields from a JSON object.
HTML
70
star
8

pepper-lang

The Pepper Programming Language
C
59
star
9

extemplate

Wrapper package for Go's template/html to allow for easy file-based template inheritance.
Go
57
star
10

wp-plugin-profiler

Basic profiler for WordPress plugins. Measures response times with and without a given plugin activated.
PHP
55
star
11

goseo

command line tool to assess readability and SEO score for any HTML document or web page
Go
55
star
12

change-username

A WordPress plugin to change usernames
PHP
53
star
13

nederlang

Nederlandse programmeertaal ๐Ÿ‡ณ๐Ÿ‡ฑ. Geรฏnterpreteerd en met dynamische types. Met bytecode compiler en virtuele machine, in Rust.
Rust
35
star
14

advent-of-code

Solutions for Advent of Code puzzles. In C, C++, Python, Rust and Golang. All years.
C
33
star
15

monkey-c-monkey-do

C implementation of the Monkey programming language. Repository moved to Sourcehut.
C
32
star
16

gozer

Fast, opinionated and simple static site generator in a single static binary. Mirrored from https://git.sr.ht/~dvko/gozer.
Go
30
star
17

wp-cdn-loader

Loads WordPress assets from a CDN instead of of local server.
PHP
22
star
18

moneybird-go

A Go client library for Moneybird
Go
18
star
19

unja

Template engine for C, inspired by Jinja and Liquid
C
13
star
20

smtp-mailer

A WordPress plugin that configures `wp_mail` to use SMTP.
PHP
13
star
21

dutchfirecalc.nl

Source code for dutchfirecalc.nl
Jupyter Notebook
10
star
22

respond

Go package for easily replying to HTTP requests with common response types.
Go
10
star
23

www.dannyvankooten.com

My personal website, managed by Gozer.
Jupyter Notebook
6
star
24

www.dvk.co

Site repository for my personal blog
Jupyter Notebook
4
star
25

dotfiles

My dotfiles
Shell
4
star
26

moneybird-belastingdienst

Makkelijker kunnen zij het niet maken, wij wel.
HTML
2
star
27

top2000spotify

Maakt 'n Spotify playlist van je Top 2000 lijstje (of die van iemand anders).
JavaScript
2
star
28

stand

Stand is a periodic reminder to stand up from your desk
C
2
star
29

argos-crypto-watch

Lightweight C program for monitoring cryptocurrency price and volume changes in Argos.
C
1
star
30

pi-volume-control

Remote volume control for my Pi over HTTP
C
1
star
31

advent-of-code-2021

My solutions for Advent of Code 2021, in Python this time.
Python
1
star
32

advent-of-code-2019

My solutions for Advent of Code 2019, in Rust.
Rust
1
star
33

top-websites-compression

Researching compression applied by the top 10.000 websites
HTML
1
star
34

cnake

Snake in your terminal. In C, no dependencies.
C
1
star