Advertisement
Guest User

Untitled

a guest
Oct 4th, 2015
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. <?php
  2.  
  3. $app->get('/images'), function () use ($app) {
  4. $images = array('images/1.jpg','images/2.jpg','images/3.jpg');
  5. $response = new JsonResponse($images);
  6. return $response;
  7. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement