PHP code example of ledc / mark
1. Go to this page and download the library: Download ledc/mark 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/ */
ledc / mark example snippets
use Ledc\Mark\App;
.0.0.0:3000');
$api->count = 4; // process count
$api->any('/', function ($requst) {
return 'Hello world';
});
$api->get('/hello/{name}', function ($requst, $name) {
return "Hello $name";
});
$api->post('/user/create', function ($requst) {
return json_encode(['code'=>0 ,'message' => 'ok']);
});
$api->start();
php start.php restart -d
php start.php stop
php start.php status
php start.php connections