PHP code example of xenin / route-manager

1. Go to this page and download the library: Download xenin/route-manager library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

xenin / route-manager example snippets


// create instance
$xn = new \xenin\RouteManager('http://api-base-url');

// setup routes
$xn->add('user', '/user/{userID}/account');
$xn->add('message', '/user/{userID}/messages/{messageID}');

// get routes
$usrRoute = $xn->get('user', array('userID' => 'f445ea85'));
$msgRoute = $xn->get('message', array('userID' => 'f445ea85','messageID' => 42));