PHP code example of mach / silex-rest

1. Go to this page and download the library: Download mach/silex-rest 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/ */

    

mach / silex-rest example snippets

 composer.phar 
 composer.phar update mach/silex-rest



use Silex\Application;
use Silex\Provider\ServiceControllerServiceProvider;
use Mach\Silex\Rest\Provider\RestApplicationServiceProvider;

$app = new Application();
$app->register(new ServiceControllerServiceProvider());
$app->register(new RestApplicationServiceProvider());

// The service is available under $app['rest']



$res = $app['rest']->resource('/users');



$res->cget(function(Request $request){ … });
$res->post(function(Request $request){ … });



$res->get(function(Request $request, $id){ … });
$res->put(function(Request $request, $id){ … });
$res->patch(function(Request $request, $id){ … });
$res->delete(function(Request $request, $id){ … });



$res->convert('user', function($user, Request $request){ … });



$res->assertId('\d+');



$res->before('cget', function(Request $request){ … });
$res->after('post', function(Request $request, Response $response){ … });



$app['rest.users.controller'] = $app->share(function($app){
    return new UsersController();
});

$app['rest']->resource('/users', 'rest.users.controller');



$app['rest']->resource('/users', new UsersController());



$userResource = $app['rest']->resource('/users');
$noteResource = $userResource->subresource('/notes');



$userResource = $app['rest']->resource('/users');
$noteResource = $userResource->subresource('/notes', null, 'nid');



$app->register(new RestApplicationServiceProvider(), array(
    'rest.methods.cget' => 'all',
    'rest.methods.post' => 'create',
    'rest.methods.get' => 'read',
    'rest.methods.put' => 'update'
    'rest.methods.patch' => 'merge'
));
POST
POST
put