dev-master
9999999-devA simple service which delivers a random avatar image as the response for GET request.
MIT
The Requires
- php >=5.6
- silex/silex ~2.0
The Development Requires
by Daniel Sitek
Wallogit.com
2017 © Pedro Peláez
A simple service which delivers a random avatar image as the response for GET request.
Php-Random-Avatar is a simple service which delivers a random image as the response for GET request. It's a small personal project, built just for fun, learning and experimenting with PHP., (*2)
File: app.php, (*3)
$avatar = new App\Avatar();
$router = new App\Router($avatar);
$avatar->set_image_root( __DIR__ . '/images' );
$avatar->set_images_array( array(
'man' => array(
'/man/001.png',
'/man/002.png',
'/man/003.png',
'/man/004.png',
'/man/005.png'
),
'woman' => array(
'/woman/001.png',
'/woman/002.png',
'/woman/003.png',
'/woman/004.png',
'/woman/005.png'
)
) );
if ( in_array( @$_SERVER['REMOTE_ADDR'], ['127.0.0.1', 'fe80::1', '::1'] ) ) {
$router->run();
} else {
$router->use_https()->run();
}
Clone this repository to your server/localhost and open it in your browser., (*4)
In browser, you can request avatar image like this:, (*5)
/ for random image from any category., (*6)
/man for random image from the "man" category., (*7)
/woman for random image from the "woman" category., (*8)
For more information, see http://opensource.org/licenses/MIT or the accompanying MIT file., (*9)
A simple service which delivers a random avatar image as the response for GET request.
MIT