2017 © Pedro Peláez
 

library uifaces

This is a library that allows you to access the ui faces api

image

samcrosoft/uifaces

This is a library that allows you to access the ui faces api

  • Saturday, November 28, 2015
  • by samcrosoft
  • Repository
  • 1 Watchers
  • 1 Stars
  • 34 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 3 % Grown

The README.md

UIFaces

Latest Version on Packagist Software License Build Status Total Downloads, (*1)

UIFaces is a well written, lightweight PHP library that helps communicate with the UIFaces API, (*2)

Create a UIFaces Generator, (*3)

<?php
$oGenerator = new Samcrosoft\UIFaces\Generators();

To Get UIFaces of a specific user, (*4)

<?php

$oUserSpecific = $oGenerator->getUser('calebogden');

// To get the Username
echo $oUserSpecific->getUsername();

// To get the Normal Image
echo $oUserSpecific->getNormalImage();

To get UIFaces of a random user, (*5)

<?php

$oUser = $oGenerator->getRandomUser();

// To get the Username
echo $oUser->getUsername();

// To get the Normal Image
echo $oUser->getNormalImage();

To get UIFaces for multiple random users, (*6)

<?php

$oUser = $oGenerator->getRandomUser();

// To get the Username
echo $oUser->getUsername();

// To get the Normal Image
echo $oUser->getNormalImage();

The Versions

28/11 2015

dev-master

9999999-dev

This is a library that allows you to access the ui faces api

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar samcrosoft