https://github.com/hacksore/factionsphp
A class to make getting faction json data a little easier
https://github.com/hacksore/factionsphp
Last synced: over 1 year ago
JSON representation
A class to make getting faction json data a little easier
- Host: GitHub
- URL: https://github.com/hacksore/factionsphp
- Owner: Hacksore
- Created: 2012-03-28T22:28:50.000Z (over 14 years ago)
- Default Branch: master
- Last Pushed: 2012-05-07T09:52:03.000Z (about 14 years ago)
- Last Synced: 2024-10-05T05:07:12.127Z (almost 2 years ago)
- Language: PHP
- Homepage:
- Size: 173 KB
- Stars: 2
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
Awesome Lists containing this project
README
A simple php class for using data from factions json files.
Example usage of the class:
require "faction_api.php"
$cl = new faction();
print_r($cl->getAllPlayers()); //returns an array of every player in a faction.
?>