restserver icon indicating copy to clipboard operation
restserver copied to clipboard

RESTful resource/url mapping and MVC, featuring Request an Response objects.

Results 2 restserver issues
Sort by recently updated
recently updated
newest added

How do you addMap to endpoints if you are not using URLRewrite? e.g. ``` $server = new \Rest\Server($_POST['uri']); // where POST is array('uri'=>'/users','key1'=>'value1','key2'=>'value2') $server->addMap('POST','/users/:key1/:key2',function($rest){}) // where uri is POST['uri'] and...