Guest User

Untitled

a guest
Apr 24th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. public function xfunction(Request $request, Response $response, $args)
  2. {
  3. #function itself
  4. }
  5.  
  6. //args
  7.  
  8. $id = $args['id'];
  9.  
  10. //get
  11.  
  12. $id = $request->getQueryParams()['id'];
  13.  
  14. //post
  15.  
  16. $id = $request->getParsedBody()['id'];
Add Comment
Please, Sign In to add comment