Skip to content

Instantly share code, notes, and snippets.

@janit
Last active October 4, 2015 17:01
Show Gist options
  • Save janit/85d5b36c343388d3378d to your computer and use it in GitHub Desktop.
Save janit/85d5b36c343388d3378d to your computer and use it in GitHub Desktop.
images.php
<?php
$app->get('/images'), function () use ($app) {
$images = array('/images/1.jpg','/images/2.jpg','/images/3.jpg');
$response = new JsonResponse($images);
return $response;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment