PHP code example of edbizarro / clash-royale-api

1. Go to this page and download the library: Download edbizarro/clash-royale-api library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

edbizarro / clash-royale-api example snippets

 php

use Edbizarro\ClashRoyale\Clan;

$clan = new Clan('clan_tag');
$clan->get();

 php

use Edbizarro\ClashRoyale\Clan;

$clan = new Clan();
$clan->search(['name' => 'clan name']);

 php

use Edbizarro\ClashRoyale\Clan;

$clan = new Clan('clan_tag');
$clan->members();

 php

use Edbizarro\ClashRoyale\Clan;

$clan = new Clan('clan_tag');
$clan->warlog();

 php

use Edbizarro\ClashRoyale\Clan;

$clan = new Clan('clan_tag');
$clan->currentWar();

 php

use Edbizarro\ClashRoyale\Player;

$player = new Player('player_tag');
$player->get();

 php

use Edbizarro\ClashRoyale\Player;

$player = new Player('player_tag');
$player->battles();

 php

use Edbizarro\ClashRoyale\Player;

$player = new Player('player_tag');
$player->upcomingChests();