PHP code example of sdieunidou / hytale-api-client

1. Go to this page and download the library: Download sdieunidou/hytale-api-client 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/ */

    

sdieunidou / hytale-api-client example snippets


use Hytale\HytaleClient;

$client = new HytaleClient();
$posts = $client->getBlogPosts();

foreach ($posts as $post) {
    echo $post['title'] . "\n";
}