PHP code example of infrajs / rest

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

    

infrajs / rest example snippets


use infrajs\rest\Rest;
// pos/Kemppi/Minarc
$ans = Rest::get(function() {
	// Срабатывает когда ничего другова не сработало
	$ans = array('msg' => 'ок');
	return $ans;
}, 'pos', function(){
	// Срабатывает для крошки pos
}, 'test', [function(){
		// Срабатывает для крошки test
	}, 'one', function(){
		// Срабатывает для адреса test/one
}], function($param1 = false, $param2 = false){
	// Срабатывает для любой крошки
}); 	
return Ans::ret($ans);