PHP code example of pklink / file-router

1. Go to this page and download the library: Download pklink/file-router 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/ */

    

pklink / file-router example snippets


// the source path for including files
$sourcePath = new SplFileInfo(__DIR__ . '/

$router->handleRoute('hello'); // '); // 

$router->handleRoute($_GET['r']);

// the source path for including files
$sourcePath = new SplFileInfo(__DIR__ . '/docs');

// create router
$router = new \FileRouter\Router\OutputTxtRouter($sourcePath);

$router->handleRoute('hello'); // print  print 

class CustomRouter extends \FileRouter\Router\AbstractRouter
{

	public function handleRoute($router)
	{
		/* @var \SplFileInfo $routingFile */
		$routingFile = $this->getFileByRoute($route);
		
		// do something
	}

}	
bash
.
├── example.php
└── orld.php
    └── hello.php
bash
.
├── example.php
└── docs
	├── hello
	│   └── world.txt
    └── hello.txt
bash
php composer.phar install --dev
php vendor/bin/phpunit tests/