ynotna/igdb-php

IGDB API 的 PHP Facade/Wrapper

dev-master 2017-01-29 22:53 UTC

This package is not auto-updated.

Last update: 2024-09-29 01:48:35 UTC


README

IGDB API 的 PHP Facade/Wrapper (Mashape)

使用方法

// Set your API KEY
define('API_KEY', 'Your_Mashape_Key');

// Instancie client
$client = new YnotnA\Igdb\IgdbApi(API_KEY);

// Get games by search.
$games = $client->getGames('mario', array('name'), 10, 0);