我正在使用Slim php框架,以便通过RESTFull调用让客户端形成数据库。
<?php
require '/Slim/Slim.php';
$app = new Slim();
$app->get('/clients', 'getClients');
$app->run();
function getClients() {
// GET CLIENTS CODE
}
?>
现在API调用是这样的 的 http://www.example.com/myproject/api.php/clients/6
我想在客户端之前在我的api中添加一个版本 像 的 http://www.example.com/myproject/api.php/v1/clients/6
你会如何建议干预&#34; v1&#34;在URI?