Git Product home page Git Product logo

phprouter's Introduction

PHPRouter

A simple, lightweight and efficient PHP routing library.

Usage

Setup

  1. Make sure you have a index.php file in your root directory. Put this .htaccess file in your root directory.
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php [L]
  1. Composer command
composer require joydeep-bhowmik/php-router

Basic

in your index.php file

require __DIR__ . '/vendor/autoload.php';
use JoydeepBhowmik\PHPRouter\Router;
$router = new Router();
$router->get('/', function () {
    return 'Home';
});
$router->dispatch();
echo Router::$view;

get, post, put, delete , any

$router->get('/', function () {
    return 'get request';
});
$router->post('/', function () {
    return 'post request';
});
$router->put('/', function () {
    return 'put request';
});
$router->delete('/', function () {
    return 'delete request';
});
$router->any('/', function () {
    return 'anytype of request';
});
$router->dispatch();

Wildcard route

$router->get('*', function () {
    return '404 not found';
});

Parameters

$router->get('/profile/{user}/{id}', function ($user, $id) {
    return 'Username  ' . $user . ' and user id is ' . $id;
});

Advance

Change base url

$router->baseUrl('/shop');

Calling a controller method

$router->get('/profile/{user}/{id}', [ExampleController::class, 'index']);

Add different request method

$router->addRoute('profile/{user}/{id}', function () {
    return 'Hello';
}, 'METHOD_NAME');

Middleware

class Example_middleware
{
    public function handle()
    {
        return true;
    }
}

$router->middleware(Example_middleware::class, function () use ($router) {

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

});
$router->dispatch()

phprouter's People

Contributors

joydeep-bhowmik avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.