samcrosoft/uifaces

这是一个允许您访问ui faces api的库

dev-master 2015-11-28 15:24 UTC

This package is not auto-updated.

Last update: 2024-09-14 15:58:03 UTC


README

Latest Version on Packagist Software License Build Status Total Downloads

UIFaces是一个编写良好、轻量级的PHP库,有助于与UIFaces API通信

创建一个UIFaces生成器

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

获取特定用户的UIFaces

<?php

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

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

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

获取随机用户的UIFaces

<?php

$oUser = $oGenerator->getRandomUser();

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

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

获取多个随机用户的UIFaces

<?php

$oUser = $oGenerator->getRandomUser();

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

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