nise-nabe / codeforces-api-php

dev-master 2014-08-15 19:07 UTC

This package is not auto-updated.

Last update: 2024-09-24 02:13:43 UTC


README

PHP的Codeforces API包装器

查看更多详细API http://codeforces.com/api/help

用法

示例

$client = new Codeforces\Api\Client();
var_dump($client->userInfo('nise_nabe'));

输出

array(2) {
  'status' =>
  string(2) "OK"
  'result' =>
  array(1) {
    [0] =>
    array(9) {
      'handle' =>
      string(9) "nise_nabe"
      'country' =>
      string(5) "Japan"
      'contribution' =>
      int(0)
      'rank' =>
      string(6) "newbie"
      'rating' =>
      int(1169)
      'maxRank' =>
      string(6) "expert"
      'maxRating' =>
      int(1657)
      'lastOnlineTimeSeconds' =>
      int(1408119476)
      'registrationTimeSeconds' =>
      int(1267685668)
    }
  }
}

API列表

待办事项

  • 授权