Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はSlim framework自分の残りの部分を開発するためにを使用していAPIます。リクエストに問題がありPUTます。サーバー側のクライアントから送信された変数にアクセスしたい。
Slim framework
API
PUT
$app->put('post/:pid', function ($pid) { //how to access other data sent from the client? }
以下のコードを参照してください。
$app = \Slim\Slim::getInstance(); $request = $app->request(); $var = $request->put();
変数は$varの配列の形式です