我正在使用 Slim 框架设计 REST api。我正在使用数据库 mySql。我正在用 php 设计这个 API。
我正在尝试从我的表中获取有关学生的数据。
我正在尝试这样:-
<?php
header('Content-type: application/json');
// Include the Slim library
require 'Slim/Slim.php';
// Instantiate the Slim class
$app = new Slim();
// Create a GET-based route
$app->get('/hello/:name', 'hello');
function hello($name)
{
// here is code to access detail of $name
echo $name
// how can i get detail if i have value of name=:kuntal not name=kuntal
}
// Ready the routes and run the application
$app->run();
?>
我正在使用以下网址尝试此功能:- 192.168.1.101/hello/:kuntal
我需要将名称的值作为kuntal 但在函数中我将名称的值作为:kuntal 所以请告诉我如何在名称前删除这个 :(冒号)。
是另一种方式来做到这一点。
如果您知道制作 REST API 的苗条框架,请给我您的建议。先感谢您。