Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save takahashi-h5/b233f3776405d1a103f9519ea217b1c9 to your computer and use it in GitHub Desktop.
Save takahashi-h5/b233f3776405d1a103f9519ea217b1c9 to your computer and use it in GitHub Desktop.
// add start
$app = new Micro();
$app->delete(
'/api/v2/getData',
function () {
$ret = [
'name' => 'yamada',
'id' => 20
];
echo json_encode($ret);
}
);
$app->handle(
$_SERVER["REQUEST_URI"]
);
// add end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment