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/adc7932ecd0669dca84bfbe47c825e69 to your computer and use it in GitHub Desktop.
Save takahashi-h5/adc7932ecd0669dca84bfbe47c825e69 to your computer and use it in GitHub Desktop.
function () use ($app) {
$body = $app->request->getJsonRawBody(); // リクエストボディを受け取る
$status = $app
->modelsManager
->executeQuery(
'INSERT INTO App\Models\Empuser (id, firstname, lastname, age) VALUES ' .
'(:id:, :firstname:, :lastname:, :age:) ',
[
'id' => $body->id,
'firstname' => $body->firstname,
'lastname' => $body->lastname,
'age' => $body->age
]
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment