1. Go to this page and download the library: Download mindplay/walkway 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/ */
mindplay / walkway example snippets
$module = new Module;
$module['hello'] = function (Route $route) {
$route['world'] = function (Route $route) {
$route->get = function() {
echo '<h1>Hello, World!</h1>';
};
};
};
$module['archive'] = function(Route $route) {
$route['<year:int>-<month:int>'] = function (Route $route) {
$route->get = function ($year, $month) {
echo "<h1>Archive for $month / $year</h1>";
};
};
};
class HelloWorldModule extends Module
{
public function init()
{
parent::init();
$this['hello'] = function (Route $route) {
$route['world'] = function (Route $route) {
$route->get = function() {
echo '<h1>Hello, World!</h1>';
};
};
};
}
public function hello_url($world = 'world')
{
return "/hello/$world";
}
}
$route['comments'] = function (Route $route) {
$route->delegate(new CommentModule());
};
$route = $module->resolve('archive/2012-08');
$result = $route->execute('GET');
$module['posts'] = function ($route) {
$controller = new PostsController();
$route['<post_id:int>'] = function (Route $route) use ($controller) {
$route->get = function ($post_id) use ($controller) {
return $controller->showPost($post_id);
};
$route['edit'] = function (Route $route) use ($controller) {
$route->get = function ($post_id) use ($controller) {
return $controller->editPost($post_id);
};
$route->post = function ($post_id) use ($controller) {
return $controller->updatePost($post_id);
};
};
};
};
$result = $module->resolve('posts/42/edit')->execute('get');
// get the path and HTTP request method:
$path = parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH);
$method = $_SERVER['REQUEST_METHOD'];
// create your module and resolve the path:
$router = new YourAwesomeModule();
$route = $router->resolve($path);
// generate a 404 if the path did not resolve:
if ($route->$method === null) {
header("HTTP/1.0 404 No Route");
}
// dispatch the get/head/post/put/delete function:
$result = $route->execute($method);
// optionally do something clever with $result here...
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.