izyanza/router

There is no license information available for the latest version (dev-main) of this package.

dev-main 2021-11-24 06:54 UTC

This package is not auto-updated.

Last update: 2024-05-09 16:55:57 UTC


README

Izyanz Router

There is an example's :

<?php

use Iz\Router\Router;

require_once "vendor/autoload.php";

Router::get("/", function() {
  echo "Hello, World!";
});

Router Method

o Get

Examples :

Router::get("/", function() {
  echo "Example";
});
o Post

Examples :

Router::post("/", function() {
  echo "Example";
});

Author

My Github